RadMenu for ASP.NET

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


Gets or sets a value indicating the timeout after which a menu item starts to open.   

 

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

Syntax

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

Return Value

An integer specifying the timeout measured in milliseconds. The default value is 100 milliseconds.

Example

The following example demonstrates how to specify a half second (500 milliseconds) timeout prior to item opening:

ASPX:

<radM:RadMenu ID="RadMenu1" runat="server" ExpandDelay="500" />

Remarks

Use the ExpandDelay property to delay item opening.

To customize the timeout prior to item closing use the CollapseDelay property.

Requirements

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

See Also