System.Rtti.TRttiType
Delphi
TRttiType = class(TRttiNamedObject)
C++
class PASCALIMPLEMENTATION TRttiType : public TRttiNamedObject
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.Rtti.pas System.Rtti.hpp |
System.Rtti | System.Rtti |
Description
TRttiType is the base class for all the RTTI objects that reflect types.
TRttiType is the class used as base for all the RTTI classes that reflect types. TRttiType defines a set of common traits that are true for all types in a Delphi application.
TRttiType exposes a set of methods that ease the queries made on type information, that were usually performed using the TTypeInfo structure.
Do not create instances of TRttiType or its descendants directly. Use a TRttiContext instance to work with RTTI objects.
See Also
Code Examples