# Tabs List

Learn how to show tabs list in your application while adding docking tab pages.

## Content

Tabs list is a drop-down functionality that can be shown on the caption area of the Docking Tab Page. For this purpose, the [C1DockingTab](/componentone/docs/win/online-command5/) class provides the [ShowTabList](/componentone/docs/win/online-command5/) property. On setting this property to true, a downward-pointing arrow appears on the caption. At runtime, when clicking the arrow, a dropdown menu appears with the list of all tabs.

![Application UI with tabs list](https://cdn.mescius.io/document-site-files/images/1086a5ae-7197-4f26-942b-edb381682c69/images/tablist.png)

You can set the **ShowTabList** property in the Properties window, or programmatically in the code editor:

```csharp
dockingTab.ShowTabList = true;
```