Umra.SetVariableLong
void SetVariableLong([in] BSTR VariableName, [in] long ValueLong)
Argument
|
Type
|
Description
|
VariableName
|
in
|
The name of the variable set by this method. Example: %SomeValue%.
|
ValueLong
|
in
|
The numeric value of the variable to set. Example: 5.
|
The interface method adds a numeric variable-value pair to the list of variables maintained by the COM object. The list is used to execute UMRA projects on the UMRA Service. To reset the list with variables, call method ClearVariables. The value of the variable must be numeric. Other methods are available for different variable value data types.
When a variable with the same name already exists in the list with variables, it is overwritten by this method.
|