_Application2.Quit(Boolean) Method

Definition

Quits the InfoPath application.

public:
 void Quit(bool bForce);
public void Quit (bool bForce);
abstract member Quit : bool -> unit
Public Sub Quit (bForce As Boolean)

Parameters

bForce
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

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.<span class="label">Quit</span>(false);

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.

Applies to