Command group Flag affected Reversible Execute on client Platform(s)
Classes NO NO NO All

Syntax

Print class {class-name}

Description

This command prints the field list and methods (if any) for the specified class. The example prints the field list and/or methods for all the classes in the current library.

Example

# generate list of all classes in the current library
Calculate iList as $clib.$classes.$makelist($ref.$name)
Do iList.$redefine(iClassName)
# loop through the list and print the results
For lNum from 1 to iList.$linecount step 1
  Do iList.[lNum].$loadcols()
  Print class {[iClassName]}
End For