Runs specified Addon and calls the Addon's specified function with/without parameters.
Example: RunAddon("theAddonName", "functionName(param1, param2, ...)")
Example 2: RunAddon("theAddonName", "anotherFunctionNameWithoutParams()")
Namespace:
AppRobotic
Assembly:
AppRobotic (in AppRobotic.dll) Version: 15.21.3.21 (15.21.03.21)
Syntax public string RunAddon(
Object AddonName,
Object FunctionToCallWithParameters
)
Parameters
- AddonName
- Type: SystemObject
Name of the Addon. - FunctionToCallWithParameters
- Type: SystemObject
Addon's function name to call with any parameters.
Return Value
Type:
StringReturns string containing 'success' or error message.
See Also