How to change the dock tab alignment?

9 Dec 20191 minute to read

The tabs of the Docked window are placed at the bottom, by default. To place the tabs of the docked window at different sides set the property DockTabAlignment with desired values such as Top, Bottom, Left, and Right.

//To set the Tab alignment as Right.

this.dockingManager.DockTabAlignment = Syncfusion.Windows.Forms.Tools.DockTabAlignmentStyle.Right;
'To set the Tab alignment as Right.

Me.dockingManager.DockTabAlignment = Syncfusion.Windows.Forms.Tools.DockTabAlignmentStyle.Right;