# Multiple Tab Rows

Learn how to add multiple docking tabs and ensure excellent tab management in your WinForms application.

## Content



Multiple tabs provides optimum tab management, and is required for multi-tasking use cases. The DockingTab control allows you to display and accommodate more than one row of tabs in the control. For this purpose, the **C1DockingTab** class provides the [MultiLine](/componentone/docs/win/online-command5/) property.

![Docking control with multiple tabs](https://cdn.mescius.io/document-site-files/images/1086a5ae-7197-4f26-942b-edb381682c69/images/multiline-dock.png)

Multiple tab row functionality can be set through the Properties window, as well as through the code as given below:

```csharp
dockingTab.MultiLine = true;
```