KaxMenuCollapseDelay Property |
Gets or sets a value indicating the timeout after which a menu item starts to
close.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public int CollapseDelay { get; set; }
Public Property CollapseDelay As Integer
Get
Set
public:
property int CollapseDelay {
int get ();
void set (int value);
}
member CollapseDelay : int with get, set
Property Value
Type:
Int32
An integer specifying the timeout measured in milliseconds. The default value is
500 (half a second).
Remarks Use the CollapseDelay property to delay item closing. To
cause immediate item closing set this property to 0 (zero).
To customize the timeout prior to item closing use the
ExpandDelay property.
Examples The following example demonstrates how to specify one second (1000
milliseconds) timeout prior to item closing:
ASPX:
<kettic:KaxMenu ID="KaxMenu1" runat="server"
ClosingDelay="1000" />
See Also