TVmtFieldTable
Table of field descriptions for a class or record type.
Declaration
Source position: typinfo.pp line 213
Type
TVmtFieldTable = packed record
private
function GetField(aIndex: Word) : PVmtFieldEntry;
public
Count : Word;
ClassTab : PVmtFieldClassTab;
Fields : Array[0..0] of TVmtFieldEntry;
property Field[aIndex: Word]: PVmtFieldEntry;
end
Description
TVmtFieldTable describes the fields for which RTTI was generated. A TVmtFieldTable entry is generated by the compiler in the RTTI information, it is not something one creates manually. Basically it contains a list of TVmtFieldEntry values.
See also
Name | Description |
---|---|
TVmtFieldEntry | Describe a field of a record/class |
Word | An unsigned 16-bits integer |