Enum DockingStyle
Specifies the type of docking.
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public enum DockingStyle
Remarks
The DockingStyle enumeration is used by the DockingManager to convey and to get information about a dock operation. The DockingStyle value is always expressed relative to the dock target. For example, when a control is being docked to the main form and DockingStyle.Left is used, this implies that the control will be docked to the left border of the form and have a width equal to the specified width and a height equal to the form's client rectangle height.
Fields
Name | Description |
---|---|
Bottom | The control is docked to the bottom edge of the parent control. |
Fill | For internal use. |
Left | The control is docked to the left edge of the parent control. |
None | No dock border. |
Right | The control is docked to the right edge of the parent control. |
Tabbed | The control is docked as a tabbed window along with the dock target. This style is not applicable when the dock target is the host form. |
Top | The control is docked to the top edge of the parent control. |