XmlForm.Submit Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Submits the form using the submit operation defined in the form template.
public:
abstract void Submit();
public abstract void Submit ();
abstract member Submit : unit -> unit
Public MustOverride Sub Submit ()
Exceptions
The form cannot be submitted.
The Submit method was called from the Loading event.
Examples
In the following code example, the Submit method of the XmlForm class is used to submit the form using the predefined submit operation.
this.Submit();
Me.Submit()
Remarks
Using the Submit method is similar to, but not exactly like, using the submit operation from the InfoPath user interface. Calling the Submit method simply performs the submit operation, but the submit operation must first be defined for form template in design mode.
Note: You can write a custom submit event handler for the Submit event, and then you can programmatically call the event handler by using the Submit method.
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
This type or member can be accessed from code running in forms opened in Microsoft InfoPath Filler or in a Web browser.