Category / Section
How to show or hide the Splitter in the TabBarSplitterControl?
The SplitBars property of the TabBarPage helps you to show or hide the Splitter on a specified TabBarPage in the TabBarSplitterControl. DynamicSplitBars helps you to specify the Split behavior of the TabBarSplitterControl.
The available options are as follows:
- None: It hides the splitter.
- SplitRows: It splits the rows vertically.
- SplitColumns: It splits the columns horizontally.
- Both: It shows both the horizontal and vertical splitters in the TabBarSplitterControl.
The following code examples demonstrates the same.
C#
//Specifies whether the Splitter should be visible vertically and horizontally.
this.tabBarPage1.SplitBars = Syncfusion.Windows.Forms.DynamicSplitBars.Both;
//Hides the Splitter
this.tabBarPage1.SplitBars = Syncfusion.Windows.Forms.DynamicSplitBars.None;VB
'Specifies whether the Splitter should be visible vertically and horizontally.
Me.tabBarPage1.SplitBars = Syncfusion.Windows.Forms.DynamicSplitBars.Both
'Hides the Splitter
Me.tabBarPage1.SplitBars = Syncfusion.Windows.Forms.DynamicSplitBars.None

Figure 1: Splitter showed in TabBarSplitterControl

Figure 2: Splitter hidden in TabBarSplitterControl
Sample Links
C#