表示: Delphi
C++
表示設定
System.TInterfaceTable
提供:XE2 API Documentation
Delphi
TInterfaceTable = packed record EntryCount: Integer; {$IF defined(CPUX64)} _Filler: LongWord; {$IFEND} Entries: array[0..9999{EntryCount - 1}] of TInterfaceEntry; {Intfs: array[0..EntryCount - 1] of PPTypeInfo;} end;
C++
struct DECLSPEC_DRECORD TInterfaceTable{ public: int EntryCount; System::StaticArray<TInterfaceEntry, 10000> Entries; };
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 |
|---|---|---|---|---|
struct class |
public | System.pas System.hpp |
System | System |
説明
TInterfaceTable は、クラスがサポートするインターフェイスのリストです。PInterfaceTable は、このリストを指します。
PInterfaceTable は TInterfaceTable 型の値へのポインタです。TInterfaceTable には、次のフィールドがあります。
| フィールド | 意味 |
|---|---|
|
EntryCount |
このデーブル内のインターフェイス記述子の数。 |
|
Entries |
インターフェイス記述子の配列。 |