System.Rtti.TRttiProperty.IsReadable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsReadable: Boolean read GetIsReadable;

C++

__property bool IsReadable = {read=GetIsReadable, nodefault};

Properties

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

Description

Specifies whether the reflected property is readable.

Use IsReadable to check whether the reflected property in a type instance can be read. If the value of IsReadable is true, the GetValue method can be used to read the value of the property.

See Also