Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

The method FormTypeEntry.CreateEditingFormEntry is only available in .Net Client API version 5.1 Patch 3 and later.

How do I save edits to a form instance that was created in edit mode?

Code Block
FormTypeEntry formType = ...; 

FormEntry formEntry = formType.CreateEditingFormEntry();

//make edits to form


formEntry.SubmitEdit();
Note

The method FormEntry.SubmitEdit is only available in .Net Client API version 5.1 Patch 3 and later.

 

How do I pre-populate values when creating an instance?

...