# Tag Wrap

## Content

MultiSelect provides a way to wrap the items within the control header. This can be achieved using [TagWrapping](/componentone/api/wpf/online-multiselect/dotnet-framework-api/C1.WPF.Input.4.6.2/C1.WPF.Input.C1TagEditor.TagWrapping.html) property of [C1TagEditor](/componentone/api/wpf/online-multiselect/dotnet-framework-api/C1.WPF.Input.4.6.2/C1.WPF.Input.C1TagEditor.html) class.
The following GIF shows how the items in the header get wrapped on setting the TagWrap property.
![Tag Wrap in MultiSelect WPF](https://cdn.mescius.io/document-site-files/images/99afa047-a77d-4af7-8372-ed07e7b3fd19/images/tagwrap.gif)
To wrap items in header, use the following code:

```vbnet
Dim te As C1TagEditor = New C1TagEditor()
te.TagWrapping = True
```

```csharp
C1TagEditor te = new C1TagEditor();
te.TagWrapping = true;
```