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

CheckBoxContentAlignment Enum

Lists values that define alignment of a CheckBox’s text label and check mark relative to each other.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum CheckBoxContentAlignment

Members

Name Description
Default

The CheckBox content is aligned according to outer styles a user applies.

Left

The CheckBox content is aligned to the left of the component’s root element.

Right

The CheckBox content is aligned to the right of the component’s root element.

Center

The CheckBox content is aligned to the center of component’s root element.

SpaceBetween

The CheckBox content uses the justify-content: space-between alignment.

SpaceAround

The CheckBox content uses justify-content: space-around alignment.

Related API Members

The following properties accept/return CheckBoxContentAlignment values:

Remarks

Use the CheckBoxContentAlignment enumeration values to define alignment of a CheckBox‘s text label and check mark relative to each other.

<div>
    <DxCheckBox Checked="false" 
                LabelPosition="LabelPosition.Right" 
                Alignment="CheckBoxContentAlignment.Left">Multimedia</DxCheckBox>
</div>           

Checkbox Alignment

Note

Checkbox alignment can work incorrectly when the CheckType property is set to CheckType.Switch and a text label is not specified.

Run Demo: CheckBox - Alignment

See Also