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

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.v19.2.dll

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