# Tag Wrap

Get started with MultiSelect, the WinForms control that provides the ease of selecting multiple objects from a list/collection. See more in documentation here.

## Content



MultiSelect provides a way to wrap the items within the control header. This can be achieved using [TagWrap](/componentone/docs/win/online-multiselect/) property of [C1MultiSelect](/componentone/docs/win/online-multiselect/) class.

The following GIF shows how the items in the header get wrapped on setting the TagWrap property.

![ComponentOne MultiSelect with items in header wrapped](https://cdn.mescius.io/document-site-files/images/243ab1d7-6cc5-4fde-978a-d5c75779ab14/images/tagwrap.gif)

To wrap items in header, use the following code:

**vbnet**

```vbnet
C1MultiSelect1.TagWrap = True
```

**csharp**

```csharp
c1MultiSelect1.TagWrap = true;
```