
Gets a snapshot of the currently loaded form's user input.
[C#]
public DataTable FormData { get; }
[Visual Basic]
Public ReadOnly Property FormData() As DataTable
The DataTable object allows for a variety of different ways of processing the contained data. For instance, exporting the form data as xml string is as simple as calling the DataTable.WriteXml() method.
Read only.