labelVisibility property
The visibility of the grid's labels.
Implementation
bool get labelVisibility {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Grid_getLabelVisibility(_handle, errorHandler);
});
}
Implementation
set labelVisibility(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Grid_setLabelVisibility(_handle, value, errorHandler);
});
}