System.Classes.TComponent.GetTypeInfoCount

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function GetTypeInfoCount(out Count: Integer): HResult; stdcall;

C++

HRESULT __stdcall GetTypeInfoCount(/* out */ int &Count);

プロパティ

種類 可視性 ソース ユニット
function protected
System.Classes.pas
System.Classes.hpp
System.Classes TComponent

説明

オブジェクトが提供する型情報インターフェースの個数(0 または 1)を返します。

GetTypeInfoCount は,IDispatch インターフェースの GetTypeInfoCount メソッドを実装します。インターフェースをサポートするコンポーネントの場合,GetTypeInfoCount は,コンポーネントがサポートするインターフェースに対して GetTypeInfoCount メソッドを呼び出します。Count パラメータは,オブジェクトが提供する型情報インターフェース数を受け取る場所を指します。オブジェクトが型情報を提供する場合,この個数は 1 です。それ以外の場合は 0 です。

関連項目