System.Rtti.TRttiProperty.IsWritable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsWritable: Boolean read GetIsWritable;

C++

__property bool IsWritable = {read=GetIsWritable, 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 writable.

Use IsWritable to check whether you can write to the reflected property. If the value of IsWritable is true, the SetValue method can be used to set the value of the property.

See Also