Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
250
Force Multi-row UltraTabControl
posted

Hi,

I have a design request that I'm nit sure exactly how to implement. Currently we have an UltraTabControl with 10 tabs all horizontal. My customer has requested that we have a hierarchy to the tab control in that he wants to group 6 tabs as top level and the rest as a second level. 

Like so,

| Tab1 |  Tab2 | Tab3 | Tab4 | Tab5________

| Tab6 | Tab7 | Tab8|___________________|

 

Any idea how I can force the tabs to display multilevel?

 

-Joe

 

 

  • 8607
    Verified Answer
    Offline posted

    Hello Joe,

    It sounds like you're trying to set the tabs in the UltraTabControl to be displayed in multiple rows?  If that is the case, please refer to this help topic.  It explains how to set the UltraTabControl to use multiple rows, and it also describes how you can set the number of tabs in a row.

    // Set the Tabs to be displayed in multiple rows
    this.ultraTabControl1.TabLayoutStyle = TabLayoutStyle.
    MultiRowTabsPerRow;

    // Set the number of Tabs in each row to be six
    this.ultraTabControl1.TabsPerRow = 6;

    Let me know if you need more information about this.

    Elizabeth Albert
    Localization Engineer