Skip to main content
A newer version of this page is available. .

RibbonStatusBar.HideWhenMerging Property

Gets or sets whether the current RibbonStatusBar should be hidden when the Ribbon Merging process occurs.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean HideWhenMerging { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

A DefaultBoolean enumerator value specifying whether the current RibbonStatusBar should be hidden when the Ribbon Merging process occurs.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

To merge RibbonStatusBars manually, use the RibbonStatusBar.MergeStatusBar method. The HideWhenMerging property allows you to specify whether the RibbonStatusBar should be visible after the merge is complete. See the Ribbon Merging and How to: Merge RibbonStatusBar Objects topics to learn more.

See Also