Skip to main content

RepositoryItemTrackBar.Alignment Property

Gets or sets the vertical alignment of the control when the auto-size feature is disabled.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(VertAlignment.Default)]
[DXCategory("Appearance")]
public VertAlignment Alignment { get; set; }

Property Value

Type Default Description
VertAlignment Default

A VertAlignment value that specifies the control’s vertical alignment.

Available values:

Name Description
Default

Places the text to its default position. The default position is in the center of an object.

Top

Places the text to the top of an object.

Center

Centers the text within an object.

Bottom

Places the text to the bottom of an object.

Remarks

When the auto-size feature is disabled (the RepositoryItemTrackBar.AutoSize option is set to false) the trackbar is not stretched to occupy the control’s region entirely. In this mode, use the Alignment property to specify how the trackbar should be aligned vertically.

See Also