Version

Orientation and Alignment

WebTab™ supports different types of orientation and alignment of the tabs. The tabs can be oriented either horizontally or vertically by simply setting the control’s TabOrientation property to Horizontal or Vertical respectively. The tabs can be aligned in eight different positions with respect to the content pane by setting the control’s TabLocation property to one of the members of the TabLocation enumeration.

In HTML:

<ig:WebTab ID="WebTab1" runat="server"
        TabOrientation="Vertical" TabLocation="BottomRight" >
 …
</ig:WebTab>

In Visual Basic:

WebTab1.TabOrientation = Orientation.Vertical
WebTab1.TabLocation = TabLocation.BottomRight

In C#:

WebTab1.TabOrientation = Orientation.Vertical;
WebTab1.TabLocation = TabLocation.BottomRight;
WebTab Orientation and Alignment 01.png