'Specify Orientation for all tabs in WinTab Me.ultraTabControl1.TabOrientation = TabOrientation.BottomRight ' Specify Orientation for Text on tabs Me.ultraTabControl1.TextOrientation = TextOrientation.Horizontal
This topic shows you how to set the WinTab™ control’s Tab Orientation as well as the Tab object’s Text Orientation. These settings can be applied through the WinTab control’s smart tag. It is also possible through code using the TabOrientation and TextOrientation properties.
In Visual Basic:
'Specify Orientation for all tabs in WinTab Me.ultraTabControl1.TabOrientation = TabOrientation.BottomRight ' Specify Orientation for Text on tabs Me.ultraTabControl1.TextOrientation = TextOrientation.Horizontal
In C#:
//Specify Orientation for all tabs in WinTab this.ultraTabControl1.TabOrientation = TabOrientation.BottomRight; // Specify Orientation for Text on tabs this.ultraTabControl1.TextOrientation = TextOrientation.Horizontal;