Version

Tab Moving

WebTab™ supports tab moving by your end users with a mouse drag. You can enable this feature by setting the TabMoving object’s Enabled property to True.

Note
Note:

It is not recommended to use this feature when multi-row tabs are enabled because of the limited support.

You can also apply your own Css classes for the main html element and the mark-up copy of the tab item by using the TabMoving object’s CssClass and MarkUpCssClass properties respectively.

In HTML:

<TabMoving Enabled="True" CssClass="mainCss" MarkUpCssClass="copyCss" />

In Visual Basic:

WebTab1.TabMoving.Enabled = true
'Assuming mainCss and copyCss as your Css classes
WebTab1.TabMoving.CssClass = "mainCss"
WebTab1.TabMoving.MarkUpCssClass = "copyCss"

In C#:

WebTab1.TabMoving.Enabled = true;
//Assuming mainCss and copyCss as your Css classes
WebTab1.TabMoving.CssClass = "mainCss";
WebTab1.TabMoving.MarkUpCssClass = "copyCss";
Note
Note:

TabMoving feature affects the VisibleIndex property of the tab item. This property can be set both on the server and on the client.