Skip to main content

NavigationPane.State Property

Gets or sets this NavigationPane‘s current state.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(NavigationPaneState.Default)]
[DXCategory("Behavior")]
public virtual NavigationPaneState State { get; set; }

Property Value

Type Default Description
DevExpress.XtraBars.Navigation.NavigationPaneState Default

A DevExpress.XtraBars.Navigation.NavigationPaneState enumerator value that is this NavigationPane‘s current state.

Remarks

Depending on the State property value, the NavigationPane can be in three unique states:

  • Regular - the content area is visible and occupies the size specified by the NavigationPane.RegularSize property;
  • Expanded - the content area is visible and occupies all available space, specified by the MaximumSize property;
  • Collapsed - the content area is collapsed, only the column with page headers is visible;
  • Default - equal to the Regular state.
See Also