Tabs Position

RadTabView can position its tabs on its four edges: top, left, right and bottom. To set the tabs position simply set the TabsPosition property:

this.tabView.setTabsPosition(TabsPosition.TOP);

Furthermore if the TabWidth property is set, and the total width of the available tabs is less than the available screen area, developers can set TabAlignment. The alignment can be left, right, top, bottom, center and stretch. For example:

this.tabView.getTabStrip().setTabsAlignment(TabsAlignment.CENTER);