blazor-devexpress-dot-blazor-2dd57c56.md
Lists values that specify the horizontal position of the component’s child content relative to the check/clickable mark.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum LabelPosition
| Name | Description |
|---|---|
Right |
The checkbox’s child content is displayed to the right of the check mark.
|
| Left |
The checkbox’s child content is displayed to the left of the check mark.
|
The following properties accept/return LabelPosition values:
<DxCheckBox Checked="true" LabelPosition="LabelPosition.Right">Text aligned to the right</DxCheckBox>
<DxCheckBox Checked="true" LabelPosition="LabelPosition.Left">Text aligned to the left</DxCheckBox>
See Also