Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CheckEdit.CheckBoxAlignment Property

Gets or sets the vertical or horizontal alignment of the checkbox. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

#Declaration

C#
public TextAlignment CheckBoxAlignment { get; set; }

#Property Value

Type Default Description
TextAlignment Center

The checkbox’s alignment.

#Remarks

To align the checkbox and label within the editor bounds, use the following properties:

  • CheckBoxPosition — specifies whether the checkbox is positioned at the left, right, top, or bottom side of the parent layout.
  • CheckBoxAlignment — specifies the alignment of the checkbox at the side where it is positioned. For example, if the editor is positioned at the top or bottom, this property specifies whether the editor is aligned at the left or right; if the editor is positioned at the left or right, this property specifies whether the editor is aligned at the top or bottom.
  • LabelHorizontalAlignment — specifies the label horizontal alignment.
  • LabelVerticalAlignment — specifies the label vertical alignment.
See Also