System.Rtti.TRttiMember.Visibility
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. |