API:System.Rtti.TRttiInterfaceType.BaseType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BaseType: TRttiInterfaceType read GetBaseTyped;

C++

__property TRttiInterfaceType* BaseType = {read=GetBaseTyped};

Properties

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

Description

Specifies the base type.

System.Rtti.TRttiInterfaceType.BaseType inherits from System.Rtti.TRttiType.BaseType. All content below this line refers to System.Rtti.TRttiType.BaseType.

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