System.Win.ObjComAuto.TObjectDispatch.GetTypeInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetTypeInfo(Index: Integer; LocaleID: Integer;
out TypeInfo): HRESULT; stdcall;

C++

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

Properties

Type Visibility Source Unit Parent
function public
System.Win.ObjComAuto.pas
System.Win.ObjComAuto.hpp
System.Win.ObjComAuto TObjectDispatch

Description

Gets the type information for a specific object.

The index value required by this function can be obtained with GetTypeInfoCount.

If the type information element exists, then the TTypeInfo parameter is set to point the requested type information and the return value is S_OK; otherwise the return value represents an error code.

Note: The current implementation of GetTypeInfo returns E_NOTIMPL.

See Also