Umra.SetVariableBool
void SetVariableBool([in] BSTR VariableName, [in] VARIANT_BOOL ValueBool)
Argument
|
Type
|
Description
|
VariableName
|
in
|
The name of the variable set by this method. Example: %SomeFlag%.
|
ValueBool
|
in
|
The boolean value of the variable to set. Example: 0. A value of 0 corresponds with false. All other values correspond with true.
|
The interface method adds a boolean 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 either true or false. 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.
|