R = invoke(h)
R = invoke(h, 'methodname')
R = invoke(h, 'methodname', arg1, arg2, ... , argN)
| Parameter | Description |
|---|---|
| h | an handle object. |
| Parameter | Description |
|---|---|
| R | The data type of the return value depends on the invoked method. |
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 | Description |
|---|---|
| 1.0.0 | initial version |