# Visibility

> Style value that specifies whether or not a VisualElement is visible.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine.UIElements](/engine/6000.7/script-reference/unityengine/uielements.md)
* **Assembly:** UnityEngine.UIElementsModule

```csharp
public enum Visibility
```

## Fields

| Value                                                                                   | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| --------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [Hidden](/engine/6000.7/script-reference/unityengine/uielements/visibility/hidden.md)   | The VisualElement is hidden. Hidden VisualElements will take up space in their parent layout if their positionType is set to PositionType.Relative. Use the [DisplayStyle](/engine/6000.7/script-reference/unityengine/uielements/displaystyle.md) style property to both hide and remove a VisualElement from the parent VisualElement layout. Note, this is the enum value used when setting styles via VisualElement.style.visibility. In C#, you can just use VisualElement.visible = false. |
| [Visible](/engine/6000.7/script-reference/unityengine/uielements/visibility/visible.md) | The VisualElement is visible. Default Value.                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
