System.Rtti.TRttiMember.Visibility

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Visibility: TMemberVisibility read GetVisibility;

C++

__property System::Typinfo::TMemberVisibility Visibility = {read=GetVisibility, nodefault};

Properties

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

Description

Specifies the member's visibility modifier.

Use Visibility to obtain a TMemberVisibility enumeration value that describes the visibility of the member in the parent type. The values of Visibility and their meanings are listed in the following table.



Value Meaning

mvPrivate

The member is private.

mvProtected

The member is protected.

mvPublic

The member is public.

mvPublished

The member is published.



See Also