[]
The C1TabControl control's tabstrip, by default, will appear along the top of the control. However, you can set the C1TabControl.TabStripPlacement property to Bottom, Left, or Right to change the position of the tabstrip.
Top Bottom ![]() |
Left Right ![]() |
|---|
To change the placement of the C1TabControl's tabstrip element, use one of the following methods:
To change the tabstrip placement, add TabStripPlacement="Right" to the <c1:C1TabControl> tab so that the markup resembles the following:
<c1:C1TabControl TabStripPlacement="Right"></c1:C1TabControl>
Complete the following steps:
C1TabControl1.TabStripPlacement = Right
c1TabControl1.TabStripPlacement = Right;
Complete the following steps:
The image below depicts a C1TabControl control with its tabstrip placed on its right side.
