Enum Visibility
Specifies whether or not a VisualElement is visible.
Namespace: UnityEngine.UIElements
Syntax
public enum Visibility : int
Fields
Name | Description | Value |
---|---|---|
Hidden | The VisualElement is hidden. Hidden VisualElements will take up space in their parent layout if their positionType is set to PositionType.Relative. Use the display property to both hide and remove a VisualElement from the parent VisualElement layout. |
|
Visible | The VisualElement is visible. Default Value. |