| Properties Name: | Description: | 
|---|---|
| Count of the number of parameters passed into the custom function. | |
| Used to access a specific parameter, or a number of parameters. | |
| Used to access a custom function's return value number. | |
| Used to access the list of returned number values. | |
| The count of the Series type parameters passed into the custom function | |
| The count of the String type parameters passed into the custom function | |
| Used to access one specific String parameter, or a number of String parameters. | |
| Used to access a custom function's return value string. | 
script.parameterList[] -- Used to access a number parameter
script.stringParameterList[] -- Used to access a string parameter
script.parameterCount -- The count of number parameters passed into the custom function
script.stringParameterCount -- The count of string parameters passed into the custom function
script.seriesParameterCount -- The count of series parameters passed into the custom function
script.returnValue -- Used to access the number return value
script.stringReturnValue -- Used to access the string return value
script.returnValueList[] -- Used to access the list of returned number values
'  Variable Containers of Passed Values to User Created Functions
Script.ParameterList[]         '  Use for INTEGER & FLOAT values
Script.StringParameterList[]   '  Use for STRING values
 
'  Quantity Count of Passed Parameter Variables in User Function
Script.ParameterCount          '  Count of INTEGER & FLOAT variables
Script.StringParameterCount    '  Count of STRING variables
 
'  Return Variable Container Of Last User Function Result
Script.ReturnValue             '  Use for INTEGER OR FLOAT Returns
Script.StringReturnValue       '  Use for STRING Return 
| Edit Time: 10/29/2020 10:52:41 AM | Topic ID#: 518 |