KaxNavigationBarExpandDelay Property |
Gets or sets a value indicating the timeout after which a panel item starts to
open.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic int ExpandDelay { get; set; }
Public Property ExpandDelay As Integer
Get
Set
public:
property int ExpandDelay {
int get ();
void set (int value);
}
member ExpandDelay : int with get, set
Property Value
Type:
Int32
An integer specifying the timeout measured in milliseconds. The default value is
0 milliseconds.
RemarksUse the ExpandDelay property to delay item opening.
To customize the timeout prior to item closing use the
CollapseDelay property.
ExamplesThe following example demonstrates how to specify a half second (500
milliseconds) timeout prior to item opening:
ASPX:
<kettic:KaxNavigationBar ID="KaxNavigationBar1" runat="server"
ExpandDelay="500" />
See Also