_Application.RegisteredFunctions[Object, Object] Property

Definition

Returns information about functions in either dynamic-link libraries (DLLs) or code resources that were registered with the REGISTER or REGISTER.ID macro functions.

public:
 property System::Object ^ RegisteredFunctions[System::Object ^, System::Object ^] { System::Object ^ get(System::Object ^ Index1, System::Object ^ Index2); };
public object RegisteredFunctions[object Index1, object Index2] { get; }
Public ReadOnly Property RegisteredFunctions(Optional Index1 As Object, Optional Index2 As Object) As Object

Parameters

Index1
Object

Optional Object. The name of the DLL or code resource.

Index2
Object

Optional Object. The name of the function.

Property Value

Remarks

If you don’t specify these arguments, this property returns an array that contains a list of all registered functions. Each row in the array contains information about a single function, as shown in the following table.

1The name of the DLL or code resource
2The name of the procedure in the DLL or code resource
3Strings specifying the data types of the return values and the number and data types of the arguments

If there are no registered functions, this property returns Null.

Applies to