DockingManager question

Hi,
I've a grid docked, having the AutoHideOnLoad property set to True. Actually, if the user wants to show the dock (previously closed) I use:

----------
if (!this.dockingManager1.GetDockVisibility(dGridEvents)) this.dockingManager1.SetDockVisibility(dGridEvents, true);
-----------------

The above code reload the the dock in AutoHide mode: is there a method to load the dock showing it not AutoHided?

Sid

1 Reply

RA Rajagopal Syncfusion Team September 4, 2007 12:00 AM UTC

Hi Sid,

Thanks for your interest in Syncfusion Products.

You need to use the SetAutoHideMode method of the dockingmanager to change the AutoHide mode of the docked control. Below is the code snippet.

this.dockingManager1.SetAutoHideMode(control, false);

Please refer to our shipped documentation and evalcenter topics for more details.
http://www.syncfusion.com/support/evalcenter/default.aspx?cNode=7

Regards,
Rajagopal

Loader.
Up arrow icon