# Wrap

> By default, items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property.

## Definition

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

```csharp
public enum Wrap
```

## Remarks

Additional Resources: [WhiteSpace](/engine/6000.7/script-reference/unityengine/uielements/whitespace.md)

## Fields

| Value                                                                                     | Description                                             |
| ----------------------------------------------------------------------------------------- | ------------------------------------------------------- |
| [NoWrap](/engine/6000.7/script-reference/unityengine/uielements/wrap/nowrap.md)           | All items will be on one line. Default Value.           |
| [Wrap](/engine/6000.7/script-reference/unityengine/uielements/wrap/wrap.md)               | Items will wrap onto multiple lines from top to bottom. |
| [WrapReverse](/engine/6000.7/script-reference/unityengine/uielements/wrap/wrapreverse.md) | Items will wrap onto multiple lines from bottom to top. |
