System.Rtti.TRttiType.BaseType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BaseType: TRttiType read GetBaseType;

C++

__property TRttiType* BaseType = {read=GetBaseType};

Properties

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

Description

Specifies the base type.

The value of BaseType depends on the actual reflected type. In the case of types that support inheritance (such as classes or interfaces), BaseType represents the ancestor. For all other cases, BaseType simply returns nil.

See Also