Having trouble getting help?
Contact Support
Contact Support
Right To Left Flow Direction in .NET MAUI DataForm (SfDataForm)
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;