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

DataFormItem.LabelHorizontalAlignment Property

Gets or sets the horizontal alignment of a label displayed above the editor.

Namespace: DevExpress.XamarinForms.DataForm

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public LayoutAlignment? LabelHorizontalAlignment { get; set; }

Property Value

Type Description
Nullable<LayoutAlignment>

A value that specifies the horizontal alignment of the editor’s label.

Remarks

You can align a label horizontally when it is above an editor (the DataFormItem.LabelPosition property is set to Top). To do this, set the editor’s LabelHorizontalAlignment property to Start, End or Center.

To specify the position and horizontal alignment for labels of all editors on the form, use the DataFormView.EditorLabelPosition and DataFormView.EditorLabelHorizontalAlignment properties.

See Also