AppQuit - method of the Pm object
Description:
Termination of the application.
This method is obsolete (but functional) and it is better to use the
Pm.AppStop method.
Syntax:
Empty AppQuit(Variant nMode)
Parameters:
nMode | (Variant) Type of termination
0 (default) - Termination of the application including the contingent confirmation window.
1 - Termination of the application without the contingent confirmation window (guaranteed termination of the application). |
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
Pm.AppQuit(1);
Pm.AppQuit 1