KaxNavigationBarExpandMode Property |
Gets of sets a value indicating the behavior of KaxNavigationBar when an item is
expanded.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic NavigationBarExpandMode ExpandMode { get; set; }
Public Property ExpandMode As NavigationBarExpandMode
Get
Set
public:
property NavigationBarExpandMode ExpandMode {
NavigationBarExpandMode get ();
void set (NavigationBarExpandMode value);
}
member ExpandMode : NavigationBarExpandMode with get, set
Property Value
Type:
NavigationBarExpandMode
One of the
NavigationBarExpandMode Enumeration
values. The default value is
MultipleExpandedItems.
RemarksUse 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