Click or drag to resize
KaxNavigationBarExpandMode Property
Gets of sets a value indicating the behavior of KaxNavigationBar when an item is expanded.

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

Property Value

Type: NavigationBarExpandMode
One of the NavigationBarExpandMode Enumeration values. The default value is MultipleExpandedItems.
Remarks

Use the ExpandMode property to specify the way KaxNavigationBar should behave after an item is expanded. The available options are:

  • MultipleExpandedItems (default) - More than one item can be expanded at a time.
  • SingleExpandedItem - Only one item can be expanded at a time. Expanding another item collapses the previously expanded one.
  • FullExpandedItem - Only one item can be expanded at a time. The expanded area occupies the entire height of the KaxNavigationBar. The Height property should be set in order KaxNavigationBar to operate correctly in this mode.
See Also