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

ExpandStateChangingEventArgs.ElementsToExpandCollapse Property

Gets the list of elements to be additionally expanded/collapsed.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public ExpandCollapseElementList ElementsToExpandCollapse { get; }

#Property Value

Type Description
DevExpress.XtraBars.Navigation.ExpandCollapseElementList

The list of elements to be additionally expanded/collapsed.

#Remarks

To expand/collapse additional elements in code, add these elements to the ElementsToExpandCollapse list. Each list item identifies an element to be expanded/collapsed and the new expansion state for this element. After your AccordionControl.ExpandStateChanging event handler is complete, the AccordionControl traverses through the ElementsToExpandCollapse list and expands/collapses corresponding elements.

Initially, the ElementsToExpandCollapse list contains a single item, which is the currently processed element (ExpandStateChangingEventArgs.Element).

See Also