This class represents values that indicate the current docked site or the potential dock sites for a window.
Public Enum DockSides Bottom = &H8000 Left = &H1000 None = 0 Right = &H4000 Top = &H2000 End Enum
public enum DockSides {
Bottom = 0x8000,
Left = 0x1000,
None = 0,
Right = 0x4000,
Top = 0x2000
}
| Members | Description |
|---|---|
| Bottom = 0x8000 | Bottom dock site. |
| Left = 0x1000 | Left dock site. |
| None = 0 | No dock site. |
| Right = 0x4000 | Right dock site. |
| Top = 0x2000 | Top dock site. |