System.Rtti.TRttiType.IsRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsRecord: Boolean read GetIsRecord;

C++

__property bool IsRecord = {read=GetIsRecord, nodefault};

Properties

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

Description

Checks whether the TRttiType instance is actually a TRttiRecordType instance.

The IsRecord property is provided as a convenience to the developer. IsRecord provides an easy and clean way to determine whether the current TRttiType instance can be casted to a TRttiRecordType instance.

See Also