Right-To-Left in Blazor CheckBox Component
28 Dec 20231 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;
}