labelUnit property
The units used for labeling the grid.
Implementation
UsngGridLabelUnit get labelUnit {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_USNGGrid_getLabelUnit(
_handle,
errorHandler,
);
});
return UsngGridLabelUnit._fromCoreValue(
coreValue,
);
}
Implementation
set labelUnit(UsngGridLabelUnit value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_USNGGrid_setLabelUnit(
_handle,
value.coreValue,
errorHandler,
);
});
}