Click or drag to resize
ExpandDirection Enumeration
This enumeration determines the direction in which child items will open.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public enum ExpandDirection
Members
  Member nameValueDescription
Auto0 The direction is determined by parent's ItemFlow and level.
Up1Child items open above their parent.
Down2Child items open below their parent.
Left3Child items open from the left side of their parent.
Right4Child items open from the right side of their parent.
Remarks

When set to Auto the direction is determined by the following rules

  • If the item is top level and the parent item flow is Horizontal the direction will be Down.
  • If the item is top level and the parent item flow is Vertical the direction will be Right.
  • If the item is subitem (a child of another menu item rather than the KaxMenu itself) the direction is Right.

Note:

If there is not enough room for the child items to open the expand direction is inverted. For example Right becomes Left, Down becomes Up and vice versa.

See Also