Interface method table.
Source position: typinfo.pp line 430
type TIntfMethodTable = packed record |
||
public |
||
Count: Word; |
|
Number of methods. |
RTTICount: Word; |
|
$FFFF if there is no further info, or the value of Count. |
property Method []: PIntfMethodEntry; [r] |
|
indexed access to the methods of the interface. |
|
||
end; |
TIntfMethodTable is a record structure describing all the methods of an interface for which RTTI is generated. It is basically an array of pointers TIntfMethodTable.Method.
|
indexed access to the methods of the interface. |