System.Rtti.TRttiMember

From RAD Studio API Documentation
Jump to: navigation, search

System.Rtti.TRttiNamedObjectSystem.Rtti.TRttiObjectSystem.TObjectTRttiMember

Delphi

TRttiMember = class(TRttiNamedObject)

C++

class PASCALIMPLEMENTATION TRttiMember : public TRttiNamedObject

Properties

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

Description

TRttiMember is the base class for all the RTTI objects that reflect class, interface, or record members.

TRttiMember is the class used as base for all the RTTI classes that reflect class, interface, or record members. TRttiMember adds two new properties: Parent, which provides access to the type this member is a part of and Visibility, which specifies the visibility modifier of the member.

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

See Also