RadMenu for ASP.NET

RadMenu Send comments on this topic.
Flow Property
See Also 
Telerik.WebControls Namespace > RadMenu Class : Flow Property


Gets or sets a value indicating the way top level items will flow.   

 

Namespace: Telerik.WebControls
Assembly: RadMenu (in RadMenu.dll)

Syntax

Visual Basic (Declaration) 
Public Property Flow As ItemFlow
Visual Basic (Usage)Copy Code
Dim instance As RadMenu
Dim value As ItemFlow
 
instance.Flow = value
 
value = instance.Flow
C# 
public ItemFlow Flow {get; set;}

Return Value

One of the ItemFlow values. The default value for top level items is Horizontal.

Example

The following example demonstrates how to make a vertical menu.

ASPX:

<radM:RadMenu ID="RadMenu1" runat="server" Flow="Vertical" />

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.

Requirements

Platforms: Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also