System.Rtti.TRttiRecordType.ManagedFields

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ManagedFields: TArray<TRttiManagedField> read GetManagedFields;

C++

__property System::DynamicArray<TRttiManagedField*> ManagedFields = {read=GetManagedFields};

Properties

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

Description

Returns a list of all the managed fields that are part of the reflected record type.

Use the ManagedFields property to obtain a list of all the managed fields (variables) that are members of the reflected record type.

To obtain a list of all fields, use the GetFields method.

See Also