<TabMoving Enabled="True" CssClass="mainCss" MarkUpCssClass="copyCss" />
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.
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";