isVisible property
True if the geometry is visible in the view, false otherwise.
Implementation
bool get isVisible {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeometryEditor_getIsVisible(
_handle,
errorHandler,
);
});
}
Implementation
set isVisible(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeometryEditor_setIsVisible(
_handle,
value,
errorHandler,
);
});
}