set <assign> {,<assign> ... }
Set all elements of an array to the same value.
<assign>
<ident> <op> <value>
<ident>
The name of the array identifier. This can be the full array or a range of array elements.
<op>
An assignment operator, typically = although other operators are permitted
depending on the type of <ident>.
<value>
A value to be assigned to every element of <ident>.
The type of <value>
should correspond to that of <ident>,
e.g. numeric, point, string etc.
None
Set all values of win1.tols (a 3-element array) to 0.
set win1.tols=0
Set a range of string values.
string mys[10] set mys='Yes', mys[5:7]='No'
Add 10 row all elements of a numeric array mynums.
numeric mynums[100] set mynums += 10