Does tab control have scroll bars and if so how do I get the vertical scroll bar to be visible?
Hi Chris,
I have a lot of ultatabpages on ultra tab control so I don't want to go for each page in designer to make autoscroll property as true.
so how to make it from collection in code. I am trying to do like this,
For Each otabpage As Infragistics.Win.UltraWinTabControl.UltraTabPageControl In ultratabcontrol
otabpage.AutoScroll = True
Next
what will be there instead of ultratabcontrol?
Thanks
Hi seeker62,
My apologies, I should have been more specific, the AutoScroll property is exposed from individual tab pages within the TabPage collection of the UltraTabControl. You can access this collection via a derivative of the following code snippet,
ultraTabControl1.Tabs[0].TabPage.AutoScroll = true;
If you have any further questions regarding this behavior, please let me know.
Sincerely,Chris KDeveloper Support EngineerInfragistics, Inc.www.infragistics.com/support
For some reason autoscroll is not available in my tabcontrol
utcContractGrid infragistics.Win.UltraWinTabControl.UltraTabControl
Appearance
Appearances
AutoSelect
AutoSelectDelay
CalcSettings on ultraCalcManager1
are the options in property sheet where the autoscroll should be.
It is certainly possible to enable scrollbars for the UltraTabControl; you may achieve this behavior by setting the AutoScroll property to True for the control. This will render either the Vertical or Horizontal scrollbar if the contents of the page exceed the viewing area for that plane(s).
If you have any further questions, please let me know.