Click or drag to resize
KaxMenuFlow Property
Gets or sets a value indicating the way top level items will flow.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual ItemFlow Flow { get; set; }

Property Value

Type: ItemFlow
One of the ItemFlow values. The default value for top level items is Horizontal.
Remarks
Use the Flow property to customize the way top level items are displayed. If set to Horizontal items are positioned one after another. Vertical causes the items to flow one below the other.
Examples

The following example demonstrates how to make a vertical menu.

ASPX:

<kettic:KaxMenu ID="KaxMenu1" runat="server" Flow="Vertical" />

See Also