# Tag Appearance

## 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/api/wpf/online-multiselect/dotnet-framework-api/C1.WPF.Input.4.6.2/C1.WPF.Input.C1MultiSelect.MaxHeaderItems.html) property of the [C1MultiSelect](/componentone/api/wpf/online-multiselect/dotnet-framework-api/C1.WPF.Input.4.6.2/C1.WPF.Input.C1MultiSelect.html) 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.

![Setting Max Header Items](https://cdn.mescius.io/document-site-files/images/99afa047-a77d-4af7-8372-ed07e7b3fd19/images/settingmaxheaderitems.gif)

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

```vbnet
mselect.MaxHeaderItems = 3
```

```csharp
mselect.MaxHeaderItems = 3;
```