Customize AutoHideTab

How can I adjust the spacing between the auto hide tabs of the dockingManager ?

Thanks

1 Reply

RB Rajasekar B Syncfusion Team April 13, 2010 11:30 AM UTC

Hi Kenneth,

Thanks for your interest in syncfusion product.

To set the space between tabs you have to access the AHTabControl to set the TabGap property. Below is the sample code:
foreach (Control ctrl in this.Controls)
{
TabControlAdv tabControlAdv = ctrl as AHTabControl;
if (tabControlAdv != null)
tabControlAdv.TabGap =15;
}

Here 'this' keyword refers to the Form which contains AHTabControl control.

We have attached the sample for your reference.

Please let us know if this helps you.

Thanks,
Rajasekar



DockingMgr_691b0be5.zip

Loader.
Up arrow icon