Articles in this section
Category / Section

How do I hide and show TabBarPages in a TabBarSplitterControl which contains a grid?

1 min read

 

1) To hide a tab page, use the Remove method.

C#

//hide tab page 2

this.tabBarSplitterControl1.TabBarPages.Remove(this.tabBarPage2);

VB

'hide tab page 2

Me.tabBarSplitterControl1.TabBarPages.Remove(Me.tabBarPage2)

2) To show a tab page, use the Insert method.

C#

//show the tab page 2

if(!this.tabBarSplitterControl1.TabBarPages.Contains(this.tabBarPage2))

this.tabBarSplitterControl1.TabBarPages.Insert(1, this.tabBarPage2);

VB

'show the tab page 2

If (Not Me.tabBarSplitterControl1.TabBarPages.Contains(Me.tabBarPage2)) Then

Me.tabBarSplitterControl1.TabBarPages.Insert(1, Me.tabBarPage2)

Here is a link with both a C# and a VB sample.

http://help.syncfusion.com/support/samples/kb/Grid.Windows/TabBarHideAndShow/TabBarHideAndShow.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied