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