System.Rtti.TRttiNamedObject.Name

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Name: string read GetName;

C++

__property System::UnicodeString Name = {read=GetName};

Properties

Type Visibility Source Unit Parent
property public
System.Rtti.pas
System.Rtti.hpp
System.Rtti TRttiNamedObject

Description

Specifies the name of the reflected entity.

Use Name to obtain the name of the entity described by the TRttiNamedObject instance.

Most RTTI reflected entities have names. For example, a type has a name, and so does a field in a class. Use Name to obtain that name.

See Also

Code Examples