Afficher : Delphi
C++
Préférences d'affichage
System.TInterfaceTable
De 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; };
Propriétés
| Type | Visibilité | Source | Unité | Parent |
|---|---|---|---|---|
struct class |
public | System.pas System.hpp |
System | System |
Description
TInterfaceTable énumère les interfaces prises en charge par une classe, et PInterfaceTable pointe sur cette liste.
PInterfaceTable est un pointeur sur une valeur TInterfaceTable. TInterfaceTable contient les champs suivants :
| Champ | Signification |
|---|---|
|
EntryCount |
Le nombre de descripteurs d'interfaces dans le tableau. |
|
Entries |
Un tableau de descripteurs d'interfaces. |