Share via


_Application2.Quit Method (Boolean)

Quits the InfoPath application.

Namespace:  Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly:  Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)

Syntax

'Declaration
Sub Quit ( _
    bForce As Boolean _
)
'Usage
Dim instance As _Application2
Dim bForce As Boolean

instance.Quit(bForce)
void Quit(
    bool bForce
)

Parameters

  • bForce
    Type: System.Boolean

    Determines whether open forms will be saved during the quit operation. If set to false, all forms will be closed without saving, even if the data in the forms has been changed. If set to true, the user will be prompted to save the forms. Default value is false.

Implements

_Application.Quit(Boolean)

Remarks

If the Quit method is used in a form that is not fully trusted, the method will return a "permission denied" error.

Important

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.

Examples

In the following example, the Quit method of the Application object is used to quit InfoPath without saving any of the currently open forms:

thisApplication.Quit(false);

See Also

Reference

_Application2 Interface

_Application2 Members

Quit Overload

Microsoft.Office.Interop.InfoPath.SemiTrust Namespace