isVisible property
The visibility of the grid.
Implementation
bool get isVisible {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Grid_getIsVisible(
_handle,
errorHandler,
);
});
}
Implementation
set isVisible(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Grid_setIsVisible(
_handle,
value,
errorHandler,
);
});
}