Right To Left Flow Direction in .NET MAUI DataForm (SfDataForm)
21 Jan 20251 minute to read
The SfDataForm
supports changing the flow direction of the text to the right-to-left direction by setting the FlowDirection
to RightToLeft
.
<ContentPage
...
xmlns:dataForm="clr-namespace:Syncfusion.Maui.DataForm;assembly=Syncfusion.Maui.DataForm">
<dataForm:SfDataForm
x:Name="dataForm"
FlowDirection="RightToLeft">
</dataForm:SfDataForm>
</ContentPage>
SfDataForm dataForm = new SfDataForm();
dataForm.FlowDirection = FlowDirection.RightToLeft;
this.Content = dataForm;