How can I help you?
Right-To-Left in Blazor CheckBox Component
18 Jun 20261 minute to read
Checkbox component has RTL support. This can be achieved by setting EnableRtl as true.
The following example illustrates how to enable right-to-left support in Checkbox component.
@using Syncfusion.Blazor.Buttons
<SfCheckBox Label="Default" @bind-Checked="isChecked" EnableRtl="true"></SfCheckBox>
@code {
private bool isChecked = true;
}