labelUnit property

MgrsGridLabelUnit labelUnit

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,
  );
}
void labelUnit=(MgrsGridLabelUnit value)

Implementation

set labelUnit(MgrsGridLabelUnit value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_MGRSGrid_setLabelUnit(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}