labelsEnabled property
True if labels are displayed for graphics in this graphics overlay, false otherwise.
Implementation
bool get labelsEnabled {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GraphicsOverlay_getLabelsEnabled(
_handle, errorHandler);
});
}
Implementation
set labelsEnabled(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GraphicsOverlay_setLabelsEnabled(
_handle, value, errorHandler);
});
}