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

RibbonPageGroup.State Property

Gets or sets whether the group is always expanded, collapsed, or automatically switches between the expanded and collapsed state depending on the available space.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(RibbonPageGroupState.Auto)]
[DXCategory("Layout")]
[XtraSerializableProperty]
public RibbonPageGroupState State { get; set; }

#Property Value

Type Default Description
DevExpress.XtraBars.Ribbon.RibbonPageGroupState Auto

A DevExpress.XtraBars.Ribbon.RibbonPageGroupState enumeration value, such as Auto, Expanded or Collapsed, that specifies the group expand/collapse state.

#Remarks

The DevExpress.XtraBars.Ribbon.RibbonPageGroupState enumeration provides the following states:

  • Expanded - all items are always visible regardless of the available space.

    CD_Ribbon_RibbonPageGroup

  • Collapsed - items are hidden, a click on a collapsed group invokes a drop-down menu that contains the hidden items.

    CD_Ribbon_RibbonPageGroup_CollapsedGroup

  • Auto (the default mode) - the group automatically collapses when there is insufficient space to display all items.
See Also