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

AccordionControlElement.ControlFooterAlignment Property

Gets or sets whether the element is aligned at the near or far side of the control footer in the accordion control’s expanded state.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(AccordionItemFooterAlignment.Near)]
[DXCategory("Appearance")]
[XtraSerializableProperty]
public AccordionItemFooterAlignment ControlFooterAlignment { get; set; }

#Property Value

Type Default Description
DevExpress.XtraBars.Navigation.AccordionItemFooterAlignment Near

An DevExpress.XtraBars.Navigation.AccordionItemFooterAlignment enumeration value, such as Near or Far, that specifies the element alignment in the control footer.

#Remarks

By default, the element is aligned at the footer near side. Use ControlFooterAlignment property to align the element at the far side.

accordionControlElementSetting.ControlFooterAlignment = AccordionItemFooterAlignment.Far;

AccordionControl_GroupContentAndHeader

In the accordion control’s collapsed state (see OptionsMinimizing.State), the ControlFooterAlignment property is not in effect.

See Also