|
|
|
|
|
<Component>.Execute (Function) In french: <Composant>.Exécute Executes a global procedure present in an external component. This external component is loaded with <Component>.Load. plugin_component is Component plugin_component.Load(plugin_component_physical_name) plugin_main_interface is ... MainInterface <- plugin_component.Exécute("GetMainInterface")
MyComponent is Component MyComponent.Load("C:\MyComponents\MyComponent.wdk") MyComponent.Exécute("MyProcedures.Hello", ("World"))
Syntax
<Result> = <Component>.Execute(<Procedure> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: Expected type Return value of the procedure. <Component>: Component variable Name of the Component variable corresponding to the component that contains a function to be executed. <Procedure>: Character string Name of the procedure of the external component to be executed. <Parameter 1>: Optional parameters (the type corresponds to the parameter type) Optional parameter expected by the procedure. This parameter must be specified between parentheses. <Parameter N>: Optional parameters (the type corresponds to the parameter type) Optional parameter expected by the procedure. This parameter must be specified between parentheses. Remarks If the call fails, the function causes a fatal error. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|