showLocation property

bool showLocation

True if location symbols are shown, false otherwise.

Implementation

bool get showLocation {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_LocationDisplay_getShowLocation(
      _handle,
      errorHandler,
    );
  });
}
void showLocation=(bool value)

Implementation

set showLocation(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LocationDisplay_setShowLocation(
      _handle,
      value,
      errorHandler,
    );
  });
}