labelPosition property
The positioning of the grid's labels.
Implementation
GridLabelPosition get labelPosition {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Grid_getLabelPosition(_handle, errorHandler);
});
return GridLabelPosition._fromCoreValue(coreValue);
}
Implementation
set labelPosition(GridLabelPosition value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Grid_setLabelPosition(
_handle, value.coreValue, errorHandler);
});
}