:CLOSE_PROCESS
Script Statement: Discards a data sequence within a script.
Syntax
:CLOSE_PROCESS Data sequence reference
Syntax |
Description/Format |
---|---|
Data sequence reference |
A script variable that includes a reference to a data sequence. |
The script statement :CLOSE_PROCESS discards an unnecessary data sequence in order to release memory. This is important for complex processing (data sequences in data sequences) in a script.
For an overview of script elements that retrieve data sequences, see Script Elements for Data Sequences.
You cannot assign new values to script variables that include a reference to a data sequence unless these script variables are released with CLOSE_PROCESS.
Note: The variable is empty after it has been closed with :CLOSE_PROCESS.
Examples
The following example discards a data sequence whose reference is stored in the script variable "&HND#".
:CLOSE_PROCESS &HND#
See also: