# Tag Appearance

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 has customizable header which, by default, displays all the items selected from the list. However, you can control this default behavior to adjust the maximum number of selected items to display in the header using [MaxHeaderItems](/componentone/docs/win/online-multiselect/) property of the [C1MultiSelect](/componentone/docs/win/online-multiselect/) class. For example, when you set the value of **MaxHeaderItems** property to 3, as soon as you select the fourth item, the header starts showing the total count of selected items as "4 items selected".

The following GIF shows how the items in the header appear on setting the MaxHeaderItems property.

![Header appearing in ComponentOne MultiSelect](https://cdn.mescius.io/document-site-files/images/243ab1d7-6cc5-4fde-978a-d5c75779ab14/images/settingmaxheaderitems.gif)

To display maximum three items in the header, use the following code:

**vbnet**

```vbnet
C1MultiSelect1.MaxHeaderItems = 3
```

**csharp**

```csharp
c1MultiSelect1.MaxHeaderItems = 3;
```