Specifies the position and manner in which a control is docked.

Namespace:  C1.Web.UI.Controls.C1ToolBar
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[EditorAttribute("System.Windows.Forms.Design.DockEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", 
	typeof(UITypeEditor))]
public enum DockStyle
Visual Basic (Declaration)
<EditorAttribute("System.Windows.Forms.Design.DockEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",  _
	GetType(UITypeEditor))> _
Public Enumeration DockStyle

Members

Member nameDescription
None The control is not docked.
Top The control's top edge is docked to the top of its containing control.
Bottom The control's bottom edge is docked to the bottom of its containing control.
Left The control's left edge is docked to the left edge of its containing control.
Right The control's right edge is docked to the right edge of its containing control.
Fill All the control's edges are docked to the all edges of its containing control and sized appropriately.

See Also