System.TypInfo.TMemberVisibility

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMemberVisibility = (mvPrivate, mvProtected, mvPublic, mvPublished);

C++

enum DECLSPEC_DENUM TMemberVisibility : unsigned char { mvPrivate, mvProtected, mvPublic, mvPublished };

Properties

Type Visibility Source Unit Parent
enum public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

Enumerates the possible visibility specifiers of a class, interface, or record member.

TMemberVisibility is an enumeration type that lists all visibility modifiers that can be used with class, interface, or record members. The meanings of the TMemberVisibility values are listed in the following table.



Value Meaning

mvPrivate

Identifies private members.

mvProtected

Identifies protected members.

mvPublic

Identifies public members.

mvPublished

Identifies published members.



See Also