Application.Quit Method () (Microsoft.Office.InfoPath)

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 type 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 as 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 Office InfoPath 2007.

Example

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()

See Also

Reference

Application Class
Application Members
Microsoft.Office.InfoPath Namespace