# Reorder Tabs

Learn how to rearrange tabs using DockingTab control.

## Content

DockingTab provides the functionality to re-arrange tabs on the DockingTab by dragging them at runtime. For this purpose, DockingTab provides the [CanMoveTabs](/componentone/docs/win/online-command5/) property. Setting this property to true, allows the end-user to re-arrange the tabs at runtime.

![GIF showing rearrangement of tabs](https://cdn.mescius.io/document-site-files/images/1086a5ae-7197-4f26-942b-edb381682c69/images/rearrange-tabs.gif)

The code snippet shows how to set the CanMoveTabs property.

```csharp
// Set property to rearrange tabs at runtime
dockingTab.CanMoveTabs = true;
```