DockStyle
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies the position and manner in which a control is docked.
- C#
- VB.NET
public enum DockStyle : Enum
Public Enum DockStyle As [Enum]
Fields
| Name | Description |
|---|---|
| Bottom | The control's bottom edge is docked to the bottom of its containing control. |
| Fill | All the control's edges are docked to the all edges of its containing control and sized appropriately. |
| Left | The control's left edge is docked to the left edge of its containing control. |
| None | The control is not docked. |
| Right | The control's right edge is docked to the right edge of its containing control. |
| Top | The control's top edge is docked to the top of its containing control. |
Used By
| Name | Description |
|---|---|
| Control.Dock | Returns or sets which control borders are docked to its parent control and determines how a control is resized with its parent. |
| Control.LayoutChildren | Arranges all the child Control using the specified dock style, spaced by spacing pixels. |
| Label.Dock | Returns or sets which control borders are docked to its parent control and determines how a control is resized with its parent. |
| Desktop.Dock | Returns or sets which control borders are docked to its parent control and determines how a control is resized with its parent. |
| MenuBar.Dock | |
| StatusBar.Dock | Returns or sets the docking behavior of the StatusBar control. |
| ToolBar.Dock |