Executes a WLanguage function identified by its name.
// Execute the Info function
ExecuteFunction("info", ("Test of the Info function"))
Syntax
<Result> = ExecuteFunction(<Function name> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: Type of the result
Result of the executed WLanguage function.
<Function name>: Character string
Name of the WLanguage function to execute (in quotes). You can specify the English or French name of the function.
<Parameter 1>: Type corresponding to the first parameter
Parameters expected by the WLanguage function. This parameter must be specified between parentheses.
<Parameter N>: Type corresponding to the Nth parameter
Parameters expected by the WLanguage function. This parameter must be specified between parentheses.