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) - Application stopping including the contingent confirmation window.
1 - Application stopping without the contingent confirmation window (guaranteed termination of the application). |
|---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
Pm.AppQuit(1);
Pm.AppQuit 1