Share via


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

Quits the Microsoft Office InfoPath 2007 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
    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 type Condition

InvalidOperationException

The Quit method was called from the Loading event.

ArgumentNullException

The parameter passed to this method is null.

ArgumentException

The parameter passed to this method isnot 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 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 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
Microsoft.Office.InfoPath Namespace