Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ExpandElementMode Enum

Enumerates element expansion modes in the AccordionControl.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public enum ExpandElementMode

#Members

Name Description
Single

A single element (item or group) can be expanded simultaneously.

Multiple

Multiple elements (items and/or groups) can be expanded simultaneously. In this mode, you can implement custom element expansion logic by handling the AccordionControl.ExpandStateChanging event.

SingleItem

A single item and multiple groups can be expanded simultaneously.

#Related API Members

The following properties accept/return ExpandElementMode values:

#Remarks

An item is expandable if a custom content container is assigned to it with the AccordionControlElementBase.ContentContainer property.

Tip

An item is an element whose AccordionControlElement.Style property set to Item.

A group is an element whose AccordionControlElement.Style property set to Group.

See Also