Gets or sets a value indicating the way top level items will flow.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public virtual ItemFlow Flow { get; set; }
Public Overridable Property Flow As ItemFlow
Get
Set
public:
virtual property ItemFlow Flow {
ItemFlow get ();
void set (ItemFlow value);
}
abstract Flow : ItemFlow with get, set
override Flow : ItemFlow with 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