VisibilityElement Interface
Represents an element that supports visibility capabilities.
export declare interface VisibilityElement
Remarks
This interface provides functionality to get and update the visibility of the element. It allows controlling whether the element is displayed or hidden in the UI.
Properties
isVisible
The current visibility state of the element.
get isVisible(): boolean;
set isVisible(value: boolean);
Parameters
-
value
The new visibility state (true to show, false to hide).
Remarks
This property returns true if the element is currently visible, false otherwise. The value is updated automatically when the visibility changes.