System.Win.ComObj.TAutoObject.GetIDsOfNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetIDsOfNames(const IID: TGUID; Names: Pointer;  NameCount, LocaleID: Integer; DispIDs: Pointer): HResult; virtual; stdcall;

C++

virtual HRESULT __stdcall GetIDsOfNames(const GUID &IID, void * Names, int NameCount, int LocaleID, void * DispIDs);

Properties

Type Visibility Source Unit Parent
function protected
System.Win.ComObj.pas
System.Win.ComObj.hpp
System.Win.ComObj TAutoObject

Description

Maps a single member and an optional set of argument names to a corresponding set of integer dispatch identifiers (dispIDs).

GetIDsOfNames implements the IDispatch interface GetIDsOfNames method. GetIDsOfNames calls this method for the interface represented by the TAutoObject, passing the specified parameters. The returned value can be used on subsequent calls to the Invoke method.

See Also