FUNCTION addArgument(eclipseData)
Add an argument
|
|
FUNCTION argumentIterator()
Initialize an iterator for the arguments [ProvideX Library Class:*obj/group] object
|
|
FUNCTION containsArgument(argKey$)
|
Parameter | Description |
argKey$ |
The name of the argument to be found. |
|
Returns |
A simple boolean (0=False, 1=true) if there is an argument with the name specified. |
|
FUNCTION deleteArgument(argKey$)
Delete an argument with the name specified, if it exists
|
Parameter | Description |
argKey$ |
The name of the argument to be deleted |
|
FUNCTION getArgument(argKey$)
|
Parameter | Description |
argKey$ |
The name of the argument to be found. |
|
|
FUNCTION getArgumentValue$(thisName$)
|
Parameter | Description |
thisName$ |
The name of the argument to be found. |
|
Returns |
The value for the string argument with the name specified |
|
FUNCTION getArgumentValue(thisName$)
|
Parameter | Description |
thisName$ |
The name of the argument to be found. |
|
Returns |
The value for the numeric argument with the name specified |
|
FUNCTION getBooleanPreference(thisName$)
|
Parameter | Description |
thisName$ |
The name of the argument to be found. |
|
Returns |
A simple value (0=False, 1=True) for the boolean preference with the name specified |
|
FUNCTION getMajor$()
|
Returns |
The major name of the current event |
|
FUNCTION getMinor$()
|
Returns |
The minor name of the current event |
|
FUNCTION getStringPreference$(thisName$)
|
Parameter | Description |
thisName$ |
The name of the argument to be found. |
|
Returns |
The value of the string preference with the name specified |
|
FUNCTION overrideBoolPref(thisName$, NewValue)
|
FUNCTION setArgument(argKey$, argValue$)
Set the value of the specified argument to the string value specified
|
Parameter | Description |
argKey$ |
The name of the argument to be found. |
argValue$ |
The string value to be assigned |
|
FUNCTION setArgument(argKey$, argValue)
Set the value of the specified argument to the numeric value specified
|
Parameter | Description |
argKey$ |
The name of the argument to be found. |
argValue |
The numeric value to be assigned |
|