labelUnit property

UsngGridLabelUnit labelUnit

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

Implementation

set labelUnit(UsngGridLabelUnit value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_USNGGrid_setLabelUnit(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}