LOCAL
From Macros Wiki
Jump to navigationJump to search
Command
- LOCAL <var name>, <var name>, <var name> (max 50 variables)
- Define variables to be used in the current macro only. These variables will not be available to any macro that calls this macro, or any macro that this macro calls.
Parameters
- <var name>
- The name of the variable to be defined.
- For a string variable, the name must end with a dollar sign "$".
- For an array variable, you must specify the number of elements in the array.
- For example MyNumericArray(10) or MyStringArray$(15).
- When using arrays, the first element is always 1.
A maximum of 50 variable names may be defined by one LOCAL command, each separated by a comma.
Example
- LOCAL iref1
- LOCAL ToolList(20), OpList(100), Notes$(5), Counter, ToolNum