System.Rtti.TRttiType.IsManaged
Delphi
property IsManaged: Boolean read GetIsManaged;
C++
__property bool IsManaged = {read=GetIsManaged, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | System.Rtti.pas System.Rtti.hpp |
System.Rtti | TRttiType |
Description
Specifies whether the reflected type is managed.
Use IsManaged to check whether the reflected type is managed. Managed types, in Delphi, are the ones that employ special compiler-aided techniques such as reference counting. Such types are strings, interfaces, anonymous methods, and arrays.