labelFormat property

LatitudeLongitudeGridLabelFormat labelFormat

The format used for labeling the grid.

Implementation

LatitudeLongitudeGridLabelFormat get labelFormat {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LatitudeLongitudeGrid_getLabelFormat(
      _handle,
      errorHandler,
    );
  });
  return LatitudeLongitudeGridLabelFormat._fromCoreValue(
    coreValue,
  );
}
void labelFormat=(LatitudeLongitudeGridLabelFormat value)

Implementation

set labelFormat(LatitudeLongitudeGridLabelFormat value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LatitudeLongitudeGrid_setLabelFormat(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}