labelsEnabled property

bool labelsEnabled

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);
  });
}
void labelsEnabled=(bool value)

Implementation

set labelsEnabled(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GraphicsOverlay_setLabelsEnabled(
        _handle, value, errorHandler);
  });
}