qp.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Member Function
  Summary Details Example                                   Back
 
  Arguments
 
    object_variable    Instance of class
 
    class_name         Class to test for membership of object_variable
 
  Returns
 
    Boolean            True if object_variable is a member of
                       class_name; otherwise False
 
  Description
 
   The Member function tests for membership of an object in a given
   class and returns a Boolean value. Membership implies that
   object_variable understands the methods of class_name, and of all
   ancestors of class_name.
 
   If object_variable is a member of a descendant of class_name,
   then it is also a member of class_name.
 
   Member may be used to screen object references before casting the
   object to another class.