Application.Quit Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Quit(Boolean) |
Quits the InfoPath application with the option to prompt users to save forms that are being closed. |
Quit() |
Quits the InfoPath application without prompting users to save open forms. |
Quit(Boolean)
Quits the InfoPath application with the option to prompt users to save forms that are being closed.
public:
abstract void Quit(bool force);
public abstract void Quit (bool force);
abstract member Quit : bool -> unit
Public MustOverride Sub Quit (force As Boolean)
Parameters
- force
- 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
The Quit method was called from the Loading event.
The parameter passed to this method is a null reference (Nothing in Visual Basic).
The parameter passed to this method is not valid. For example, it is of the wrong type or format.
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)
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.
Applies to
Quit()
Quits the InfoPath application without prompting users to save open forms.
public:
abstract void Quit();
public abstract void Quit ();
abstract member Quit : unit -> unit
Public MustOverride Sub Quit ()
Exceptions
The Quit method was called from the Loading event.
Examples
In the following example, the Quit method of the Application class is used to quit InfoPath without prompting the user to save any of the currently open forms.
this.Application.Quit();
Me.Application.Quit()
Remarks
If the Quit method is used in a form that is not fully trusted, the method will return a "permission denied" error.
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.