Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt

Use this file to discover all available pages before exploring further.

What it does

Stores information about the actions carried out during script execution. The information is available if the script runs again.

Methods

DefinitionDescription
Has (name: string): boolChecks whether a property with the given name exists in the array.
Set (name: string, value: string)Sets the name and value of a property.
Delete (name: string)Deletes the property with the given name.
DeleteAll ( )Deletes all properties.

Properties

NameTypeAccessDescription
NamesVARIANTRead-onlyArray of property names specified by the user.
IsEmptyboolRead-onlyWhether the array of properties is empty.
Value (name: string)boolRead/writeValue of the property with the given name. See Shorthand syntax.

Shorthand syntax

Instead of writing params.Value("Name") = "newValue", you can use parentheses directly:
params("Name") = "newValue"
Both forms assign the value to the property with the given name.