class documentation

class PrivacyClass(Enum):

View In Hierarchy

Enum containing values indicating how private an object should be.
Constant HIDDEN Don't show the object at all.
Constant PRIVATE Show, but de-emphasize the object.
Constant VISIBLE Show the object as normal.
HIDDEN: int =
Don't show the object at all.
Value
0
PRIVATE: int =
Show, but de-emphasize the object.
Value
1
VISIBLE: int =
Show the object as normal.
Value
2