How To Programmatically Editing The Dataform In Xamarin.Ios (Sfdataform)

Sample date Updated on Sep 13, 2025
dataform editing editor ios programmatic sfdataform

You can programmatically edit the SfDataForm using UpdateEditor method in Xamarin.Forms.

You can also refer the following article.

https://www.syncfusion.com/kb/11457/how-to-programmatically-editing-the-dataform-in-xamarin-ios-sfdataform

C#

By using DataObject property you can get the input values of properties in DataForm. You can change the value and update the editor to refresh the editor with updated value.

private void Button_TouchUpInside(object sender, EventArgs e)
        {
            var model = dataForm.DataObject as DataFormModel;
            model.Name = "John";
            dataForm.UpdateEditor("Name");
        }

Output

DataFormUpdateEditor

Up arrow