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

XtraLayoutPanelBase.LabelVertAlignment Property

Gets or sets how LabelControls are vertically aligned in relation to the text editors displayed to the label’s right (to the label’s left in right-to-left locales).

Namespace: DevExpress.Utils.Layout

Assembly: DevExpress.Utils.v20.1.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

[DXCategory("Layout")]
[DefaultValue(LabelVertAlignment.Default)]
public LabelVertAlignment LabelVertAlignment { get; set; }

Property Value

Type Default Description
DevExpress.Utils.Layout.LabelVertAlignment Default

The label’s vertical position relative to the adjacent text editor.

Remarks

The LabelVertAlignment property specifies the vertical alignment of a LabelControl placed to the left of a DevExpress text editor (TextEdit and its descendants).

Baseline alignment

The label’s baseline matches the baseline of the editor’s text.

Center alignment

The label is vertically centered relatively to the editor’s box.

Default alignment

The Default value is interpreted as follows:

  • For the StackPanel, the Default value is equivalent to Center.

  • For the TablePanel, the Default value is equivalent to Baseline.

See Also