Hi Ian,
Currently to set the size of the autohidden docking panel you need to set the value of NDockPanel.TabInfo.AutoHideSize.
However, if the user change the size of the autohidden panel by resizing it with the mouse this property will no longer apply.
In the next release or service pack we will add a new method called ApplyAutoHideSize which will apply the value of AutoHideSize to the actual size of the panel.
This way you will be able to change the size of the autohidden panel when the size of the panel when it is in a docked state is changed.
What you can do now is to attach to the NDockingPanel.ClientSizeChanged event and in the event handler you can set the TabInfoAutoHideSize to the SizeInfo.PrefferedSize.
private void nDockingPanel1_ClientSizeChanged(object sender, EventArgs e)
{
nDockingPanel1.TabInfo.AutoHideSize = nDockingPanel1.SizeInfo.PrefferedSize;
}
Best Regards,
Nevron Support Team