isVisible property
True if the graphic is visible, false otherwise.
Implementation
bool get isVisible {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Graphic_getIsVisible(_handle, errorHandler);
});
}
Implementation
set isVisible(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Graphic_setIsVisible(_handle, value, errorHandler);
});
}