System.Rtti.TRttiIndexedProperty.IsDefault

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsDefault: Boolean read GetIsDefault;

C++

__property bool IsDefault = {read=GetIsDefault, nodefault};

Properties

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

Description

Indicates whether the indexed property is default.

IsDefault indicates whether the indexed property is default. A default indexed property can be accessed without specifying the property name. See an example here: System.Classes.TStrings.Strings.

Note: Do not confuse the notion of default indexed property with the notion of property default value.

See Also