Skip to main content

What it does

Stores information about the actions carried out during the script execution. This information can be used, if the script is recalled.

Methods

DefinitionDescription
Has (name: string): boolChecks whether an array of script properties contains a specified property
Set (name: string, value: string)Sets the name and the value of a property
Delete (name: string)Deletes a specified property
DeleteAll ( )Deletes all properties

Properties

NameTypeAccessDescription
NamesVARIANTRead-onlyThe array of properties names specified by user
IsEmptyboolRead-onlySpecifies whether the array of script properties is empty
Value (name: string)boolRead/writeThe property value. In scripts you can address the “Name” parameter of the property both with and without the word “Value”. Instead of “Value” you can use parentheses. So you can write params( “Name” ) = “newValue” instead of params.Value( “Name” ) = “newValue”