System.Win.ComObj.TAutoObject.GetTypeInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetTypeInfo(Index, LocaleID: Integer; out TypeInfo): HResult; virtual; stdcall;

C++

virtual HRESULT __stdcall GetTypeInfo(int Index, int LocaleID, /* out */ void *TypeInfo);

Properties

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

Description

Retrieves the type information for an object.

GetTypeInfo implements the IDispatch interface GetTypeInfo method. GetTypeInfo calls the GetTypeInfo method for the interface for the interface represented by the TAutoObject, passing it the specified parameters. Use the returned value to get the type information for an interface implemented by the component.

See Also