System.Rtti.TRttiType.IsPublicType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsPublicType: Boolean read GetIsPublicType;

C++

__property bool IsPublicType = {read=GetIsPublicType, nodefault};

Properties

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

Description

Checks whether the TRttiType instance reflects a public type.

Use IsPublicType to determine whether the reflected type is declared in the interface section of a unit. If the value of IsPublicType is false, the type is private and does not have a qualified name, nor can it be looked up directly.

See Also