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

BarEditItem.ShowInVerticalBar Property

Gets or sets whether all links for the current BarEditItem should be displayed within vertical Bars.

Namespace: DevExpress.Xpf.Bars

Assembly: DevExpress.Xpf.Core.v21.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public DefaultBoolean ShowInVerticalBar { get; set; }

Property Value

Type Description
DefaultBoolean

true, if all links for the current BarEditItem should be displayed within vertical Bars; otherwise, false.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Remarks

By default, links to BarEditItems are hidden when placed onto vertical Bars. An end-user has to click the ‘More items…’ button to view these links (see the figure below). Set the ShowInVerticalBar property to true in order to display all links for the current BarEditItem within vertical Bars.

BarEditItem in vertical bars collage

BarEditItemLinks also have the BarEditItemLink.ShowInVerticalBar property, which has a higher priority than the ShowInVerticalBar property. Use it to specify whether a specific link should be displayed within a vertical bar.

See the BarContainerControl topic to learn how to change a Bar’s orientation.

See Also