System.Rtti.TRttiProperty.IsReadable

From RAD Studio API Documentation
Revision as of 00:23, 17 October 2011 by PyBot (talk | contribs) (Scoping Libraries)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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