_Application3.Quit method (Boolean)
Quits the InfoPath application.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)
Syntax
'Declaration
Sub Quit ( _
bForce As Boolean _
)
'Usage
Dim instance As _Application3
Dim bForce As Boolean
instance.Quit(bForce)
void Quit(
bool bForce
)
Parameters
bForce
Type: System.BooleanDetermines 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
Remarks
If the Quit method is used in a form that is not fully trusted, the method will return a "permission denied" error.
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.Quit(false);