Click or drag to resize
KaxNavigationBarCollapseDelay Property
Gets or sets a value indicating the timeout after which a panel item starts to close.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public int CollapseDelay { get; set; }

Property Value

Type: Int32
An integer specifying the timeout measured in milliseconds. The default value is 0 milliseconds.
Remarks

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:KaxNavigationBar ID="KaxNavigationBar1" runat="server" CollapseDelay="1000" />

See Also