labelFormat property
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,
);
}
Implementation
set labelFormat(LatitudeLongitudeGridLabelFormat value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_LatitudeLongitudeGrid_setLabelFormat(
_handle,
value.coreValue,
errorHandler,
);
});
}