Where can I find a complete explanation/definition each of the Modifiers that can be used when defining a Member, Property, or Method on a Class??
Here is the list of Modifiers listed in online Help for Members, but I looked everywhere trying to find a description or definition of these and I simply could not find it.
FoxProMatt_MattSlay wrote:Where can I find a complete explanation/definition each of the Modifiers that can be used when defining a Member, Property, or Method on a Class??
Here is the list of Modifiers listed in online Help for Members, but I looked everywhere trying to find a description or definition of these and I simply could not find it.
PROTECTED can only be called inside of a class or derived class
HIDDEN/PRIVATE can only be called in the class it is defined in
PUBLIC | EXPORT can be used by objects created from the class or derived classes
INTERNAL can only be called in the assembly it is created in
STATIC it is part of the class not the object, e.g. functions/procedures, or Singleton.Inst typical examples
VIRTUAL maybe the DevTeam can expand on this
SEALED you cannot subclass this class
ABSTRACT you can only subclass this, cannot directly inherit from it
ASYNC asynchronous call
UNSAFE normally used with unsafe Win32 code
EXTERN external, DevTeam to expand
OVERRIDE you can replace this in a subclass
______________________
Johan Nel
Boshof, South Africa