CentralTabMinimumSize Property
Gets or sets a value that determines how the central tab width is calculated when there are two pages of tabs docked on the left and right.
The code below sets the minimum width of the central tab to 100 pixels to ensure that the central tab is visible after two pages of tabs docked on the left and right: The code below sets the minimum width of the central tab to 50 percent of the parent container to ensure that the central tab is visible after two pages of tabs docked on the left and right:
c1CommandDock1.CentralTabMinimumSize.WidthType = WidthType.Absolute;
c1CommandDock1.CentralTabMinimumSize.Width = 100;
c1CommandDock1.CentralTabMinimumSize.WidthType = WidthType.Percent;
c1CommandDock1.CentralTabMinimumSize.Width = 50;