Application.Quit Method
Quits the InfoPath application without prompting users to save open forms.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public MustOverride Sub Quit
'Usage
Dim instance As Application
instance.Quit()
public abstract void Quit()
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | The Quit method was called from the Loading event. |
Remarks
If the Quit method is used in a form that is not fully trusted, the method will return a "permission denied" error.
This member can be accessed only by forms opened from a form template that has been configured to run with full trust using the Security and Trust category of the Form Options dialog box. This member requires full trust for the immediate caller and cannot be used by partially trusted code. For more information, see "Using Libraries from Partially Trusted Code" on MSDN.
This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.
Examples
In the following example, the Quit method of the Application class is used to quit InfoPath without prompting the user to save any of the currently open forms.
this.Application.Quit();
Me.Application.Quit()