Category / Section
How to change the splitter width between two docked windows in WinForms Docking Manager?
Splitter width
The DockingManager.SplitterWidth property is used get or set the splitter width between the docked windows.
C#
// Sets the splitter width. this.dockingManager1.SplitterWidth=20; // Gets the Splitter width. int val=this.dockingManager1.SplitterWidth;
VB
' Sets the splitter width me.DockingManager1.SplitterWidth=20; ' Gets the Splitter width int val=me.DockingManager1.SplitterWidth;
Note:
The value should be less than 30. Otherwise it will raise exception.
UG document link: https://help.syncfusion.com/windowsforms/dockingmanager/dock-window#customize-resize-splitter