Access Control

Summary: All class members are accessible.

You can examine any member of a class object including base classes and embedded member objects. In CodeView, all members are available without regard to access control (public, protected, or private visibility). For example, if myDate has a private data member named month, you can examine it with the following command:

>? myDate.month

3