Docking Namespace Reference


Enumerations

enum  {
  dockNone = BIT(0),
  dockClient = BIT(1),
  dockTop = BIT(2),
  dockBottom = BIT(3),
  dockLeft = BIT(4),
  dockRight = BIT(5),
  dockInvalid = BIT(6),
  dockAny = dockClient | dockTop | dockBottom | dockLeft | dockRight
}


Enumeration Type Documentation

anonymous enum

Enumerator:
dockNone  Do not align this control to it's parent, let the control specify it's position/extent (default).
dockClient  Align this control to the client area available in the parent.
dockTop  Align this control to the topmost border of it's parent (Width will be parent width).
dockBottom  Align this control to the bottommost border of it's parent (Width will be parent width).
dockLeft  Align this control to the leftmost border of it's parent (Height will be parent height).
dockRight  Align this control to the rightmost border of it's parent (Height will be parent height).
dockInvalid  Default NOT specified docking mode, this allows old sizing to takeover when needed by controls.
dockAny