IDispatch interface exposes objects, methods and properties to programming tools and other applications that support Automation. COM components implement the IDispatch interface to enable access by Automation clients, such as Visual Basic.
Methods
|
IDispatch Methods
|
Description
|
| GetTypeInfoCount | Retrieves the number of type information interfaces that an object provides (either 0 or 1). |
| GetTypeInfo | Gets the type information for an object. |
| GetIDsOfNames | Maps a single member and an optional set of argument names to a corresponding set of integer DISPIDs. |
| Invoke | Provides access to properties and methods exposed by an object. |
Requirements
IDispatch is located in the Oleauto.h header file on 32-bit systems, and in Dispatch.h on 16-bit and Macintosh systems.
See Also