Attribute | Values | Description | |
---|---|---|---|
Macro | REQUIRED | text | name of macro |
Attribute | Values | Description | |
---|---|---|---|
Macro | REQUIRED | text | name of a previously Defined macro |
{Arg} | {value} | other arbitrary arguments are assigned as arguments |
Attribute | Values | Description | |
---|---|---|---|
Arg | REQUIRED | text | argument name |
Attribute | Values | Description | |
---|---|---|---|
Arg | REQUIRED | text | argument name |
Attribute | Values | Description | |
---|---|---|---|
Seed | "time" or integer | seed value, if any: defaults to "time" for first use only | |
Type | "INT", "FLOAT", "STRING" | what to generate: defaults to INT | |
Min | by type | minimum value to generate: defaults to "0", "0.0" or "A" | |
Max | by type | maximum value to generate: defaults to "100", "100.0", or "Z" | |
Step | integer or float | increment between possible values to generate: defaults to "1", "0.0000001", or "1" |
If a seed value is given, it will be used to seed the random number generator. The seed value can be either an integer or the word "time", which will use the system time as the seed. If no seed is specified the first time Random is used, it will initialize with the system time by default. After the first time, not specifying a seed means that the random number generator will not be reseeded.
Type defaults to INT, which produces an integer value. FLOAT produces a (floating-point) real number. STRING produces a single ASCII character.
Min defaults to 0 for INT or FLOAT and "A" for STRING. Note that since STRING uses ASCII, the range "A" - "Z" is different from, and lower in value than "a" - "z". The range "A" - "z" includes all letter of both cases, as well as several punctuation marks that fall in between.
Max defaults to 100 for INT or FLOAT and "Z" for STRING. If Max is specified to be less than Min, Min is produced and an error message will precede the produced value.
Step defaults to 1 for INT or STRING and 0.0000001 for FLOAT. Step determines the interval between possible values. For example, an integer with Min=0 and Step=2 will produce only even numbers.
Attribute | Values | Description | |
---|---|---|---|
File | REQUIRED | filespec | specifies the file to include |
Interpret | "Yes" or "No" | determines whether to interpret the file | |
Nointerpret | none | equivalent to Interpret="No" |
Attribute | Values | Description | |
---|---|---|---|
Handle | REQUIRED | text | name to refer to open file with |
File | REQUIRED | filespec | specifies file to open |
Mode | "Read", "Write", or "Append" | file access mode: defaults to Read |
Attribute | Values | Description | |
---|---|---|---|
Handle | text | handle of currently open file: defaults to most recently opened file |
Attribute | Values | Description | |
---|---|---|---|
Handle | text | handle of currently open file: defaults to most recently opened file | |
Arg | text string(s) | name(s) of arguments to assign values to |
Attribute | Values | Description | |
---|---|---|---|
Handle | text | handle of currently open file: defaults to most recently opened file |