_CallClipFunc Function (String, Array) | |
Call a clipper function by name
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION _CallClipFunc(
symFunction AS STRING,
aArgs AS ARRAY
) AS USUAL
public static Usual _CallClipFunc(
string symFunction,
Array aArgs
)
Request Example
View SourceParameters
- symFunction
- Type: String
The name of the function to call. - aArgs
- Type: Array
The list of arguments to pass to the function
Return Value
Type:
UsualThe return value of the function
Remarks Note that X# allows to call functions that are overloaded.
See Also