Application.Quit method (Boolean)

Quits the InfoPath application with the option to prompt users to save forms that are being closed.

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

Syntax

'Declaration
Public MustOverride Sub Quit ( _
    force As Boolean _
)
'Usage
Dim instance As Application
Dim force As Boolean

instance.Quit(force)
public abstract void Quit(
    bool force
)

Parameters

  • force
    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. The default value is false.

Exceptions

Exception Condition
InvalidOperationException

The Quit method was called from the Loading event.

ArgumentNullException

The parameter passed to this method is a null reference (Nothing in Visual Basic).

ArgumentException

The parameter passed to this method is not valid. For example, it is of the wrong type or format.

Remarks

If the Quit method is used in a form that is not fully trusted, the method will raise a System.Security.SecurityException exception.

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 and prompt the user to save any of the currently open forms.

this.Application.Quit(true);
Me.Application.Quit(true)

See also

Reference

Application class

Application members

Quit overload

Microsoft.Office.InfoPath namespace