Icon Prepared Property

property Prepared: Boolean

Usage

Use the Prepared property to determine if a script is already prepared for execution. If Prepared is True, the script is prepared, and if Prepared is False, the script is not prepared. While a script need not be prepared before execution if it doesn't accept any parameters, it is recommended that you always prepare a script before executing it, particularly if the script accepts parameters and is executed more than once.

Information An application can change the current setting of Prepared to prepare or unprepare a script. If Prepared is True, setting it to False calls the UnPrepare method to unprepare the script. If Prepared is False, setting it to True calls the Prepare method to prepare the script.
Image