isVisible property

bool isVisible

True if the graphics overlay is visible, false otherwise.

Implementation

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

Implementation

set isVisible(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GraphicsOverlay_setIsVisible(_handle, value, errorHandler);
  });
}