_Application3.Quit(Boolean) Method

Definition

Quits the InfoPath application.

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

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.

Applies to