TabBarSplitterControl

I have a TabBarSplitterControl with a couple of TabBarPages. I want to be able to temporary disable one of the tab controls without having to remove it from the Controls collection. I would be great if I just could dim it down so it''s still visible in the TabBarSplitterControl but not clickable. I have tried to set the TabBarPage.Enabled = false but it didn''t do the job. Is there a way to do this? Best regards Tommy

1 Reply

AD Administrator Syncfusion Team March 29, 2004 04:08 PM UTC

Try this.tabBarSplitterControl1.Bar.TabBarChild.Tabs[1].Enabled = false;

Loader.
Up arrow icon