Skip to main content

DiagramItem.CollapseButtonVerticalAlignment Property

Gets or sets the vertical alignment of the collapse button’s border relative to its actual position.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v23.2.dll

NuGet Package: DevExpress.Win.Diagram

Declaration

[DefaultValue(Alignment.Center)]
[DiagramCategory(DiagramCategory.ExpandAndCollapse)]
public virtual Alignment CollapseButtonVerticalAlignment { get; set; }

Property Value

Type Default Description
Alignment Center

An Alignment enumeration value that specifies the vertical alignment of the collapse button.

Available values:

Name Description
Near

In a left-to-right layout, items are aligned to the left from the layout axis. In a right-to-left layout, items are aligned to the right.

Center

Items are aligned along the layout axis.

Far

In a left-to-right layout, items are aligned to the right from the layout axis. In a right-to-left layout, items are aligned to the left.

Remarks

The DiagramItem.CollapseButtonPosition and DiagramItem.CollapseButtonOffset properties define the actual position of the collapse button. The DiagramItem.CollapseButtonPosition property is set in relative coordinates within the shape border. 0,0 corresponds to the top-left corner of the shape border, 1,1 corresponds to the bottom-right corner. The DiagramItem.CollapseButtonOffset property specifies the offset in absolute coordinates.

The CollapseButtonVerticalAlignment and DiagramItem.CollapseButtonHorizontalAlignment properties specify the alignment of the collapse button’s border relative to its actual position. The images below illustrate the collapse button placement when the DiagramItem.CollapseButtonHorizontalAlignment property is set to Alignment.Center.

See Also