# C1.Win.Command.C1CommandDock.CentralTabMinimumSize

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_Command_C1CommandDock_CentralTabMinimumSize_" data-uid="C1.Win.Command.C1CommandDock.CentralTabMinimumSize*">CentralTabMinimumSize Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_Command_C1CommandDock_CentralTabMinimumSize_" data-uid="C1.Win.Command.C1CommandDock.CentralTabMinimumSize*"></a>
<h4 id="C1_Win_Command_C1CommandDock_CentralTabMinimumSize" data-uid="C1.Win.Command.C1CommandDock.CentralTabMinimumSize">CentralTabMinimumSize</h4>
<div class="markdown level1 summary"><p>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.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">[C1Category(&quot;Behavior&quot;)]
[C1Description(&quot;C1CommandDock.CentralTabMinimumSize&quot;, &quot;Determines how the central tab width is calculated when there are two pages of tabs docked on the left and right.&quot;)]
public CentralTabMinimumSize CentralTabMinimumSize { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">&lt;C1Category(&quot;Behavior&quot;)&gt;
&lt;C1Description(&quot;C1CommandDock.CentralTabMinimumSize&quot;, &quot;Determines how the central tab width is calculated when there are two pages of tabs docked on the left and right.&quot;)&gt;
Public Property CentralTabMinimumSize As CentralTabMinimumSize</code></pre>
</div>
<h5 id="C1_Win_Command_C1CommandDock_CentralTabMinimumSize_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This property will be respected when the page is docked and ignored when the page or the entire control is resized.</p>
</div>
<h5 id="C1_Win_Command_C1CommandDock_CentralTabMinimumSize_examples">Examples</h5>
<p>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:</p>
<pre><code class="lang-csharp">c1CommandDock1.CentralTabMinimumSize.WidthType = WidthType.Absolute;
c1CommandDock1.CentralTabMinimumSize.Width = 100;</code></pre>
<p>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:</p>
<pre><code class="lang-csharp">c1CommandDock1.CentralTabMinimumSize.WidthType = WidthType.Percent;
c1CommandDock1.CentralTabMinimumSize.Width = 50;</code></pre>

</div>
