invoke
Invoke method on an handle object.
📝Syntax
R = invoke(h)
R = invoke(h, 'methodname')
R = invoke(h, 'methodname', arg1, arg2, ... , argN)
📥Input Arguments
Parameter Description
h an handle object.
📤Output Arguments
Parameter Description
R The data type of the return value depends on the invoked method.
📄Description

invoke(h) returns a struct with a list of all callable methods.

R = invoke(h, 'methodname') calls the method specified by methodname, and returns an output value.

🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub