GetMethodNames function
Syntax
GetMethodNames(Type, Name)
Description
Use the GetMethodNames function to return either the method names for a Component Interface, or the function names of a WEBLIB record.
Parameters
| Parameter | Description |
|---|---|
|
Type |
Specify the type of methods or functions you want returned. This parameter takes a string value. The values are:
|
|
Name |
Specify the name of the Component Interface or WEBLIB record that you want to know the methods or functions for. |
Returns
An array of string containing the method or function names.
Example
Local array of string &Array;
&Array = GetMethodNames("CompIntfc", CompIntfc.USER_PROFILE);
&Array = GetMethodNames("WebLib", Record.WEBLIB_PORTAL);