Skip to main content

DiagramItem.CollapseButtonHorizontalAlignment Property

Gets or sets the horizontal alignment of the collapse button.

Namespace: DevExpress.Xpf.Diagram

Assembly: DevExpress.Xpf.Diagram.v23.2.dll

NuGet Package: DevExpress.Wpf.Diagram

Declaration

public Alignment CollapseButtonHorizontalAlignment { get; set; }

Property Value

Type Description
Alignment

A DevExpress.Diagram.Core.Alignment enumeration value that specifies the horizontal 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 CollapseButtonHorizontalAlignment and CollapseButtonVerticalAlignment 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 CollapseButtonVerticalAlignment property is set to Center.

  • CollapseButtonHorizontalAlignment is Near

  • CollapseButtonHorizontalAlignment is Center

  • CollapseButtonHorizontalAlignment is Far

See Also