System.Rtti.TRttiProperty

From RAD Studio API Documentation
Jump to: navigation, search

System.Rtti.TRttiMemberSystem.Rtti.TRttiNamedObjectSystem.Rtti.TRttiObjectSystem.TObjectTRttiProperty

Delphi

TRttiProperty = class(TRttiMember)

C++

class PASCALIMPLEMENTATION TRttiProperty : public TRttiMember

Properties

Type Visibility Source Unit Parent
class public
System.Rtti.pas
System.Rtti.hpp
System.Rtti System.Rtti

Description

TRttiProperty is the RTTI object that reflects a property.

Use TRttiProperty instances to gain access to information about a class or a record property. TRttiProperty exposes a way that allows querying for the type of the property. TRttiProperty also provides a set of routines that permit getting or setting the value of the property in a given object or record instance.

Do not create instances of TRttiProperty or its descendants directly. Use a TRttiContext instance to work with RTTI objects.

See Also

Code Examples