Expand Minimize
This topic has not yet been rated - Rate this topic

_Application.RegisteredFunctions Property 

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

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

'Usage
Dim _Application1 As _Application

Dim key As Object
Dim returnValue As Object
returnValue = _Application1.RegisteredFunctions(key)

object this[
	[In, Optional] object Index1, 
	[In, Optional] object Index2
] {get;}
public System.Object get_Item(
	/*in*/System.Object Index1, 
	/*in*/System.Object Index2
);
In JScript, you can use Indexed Properties defined by a class, but you cannot define your own.

Parameters

Index1

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

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.

Column

Contents

1

The name of the DLL or code resource

2

The name of the procedure in the DLL or code resource

3

Strings 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.


Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.