STORE
Stores an expression to specified memory variables or properties.
Syntax
STORE <exp> TO <memvar list>
<exp>
The expression to store.
TO <memvar list>
The list of memory variables and/or properties to store <exp>, separated by commas.
Description
Use STORE to store any valid expression to a one or more variables or properties.
Common style dictates the use of STORE only when storing a single value to multiple locations. When storing to a single variable or property, an assignment operator, either = or :=, is preferred.
To specify the scope of a variable, use LOCAL, PRIVATE, PUBLIC, or STATIC before assigning a value to the variable.