FileClass, FileClassLibrary
These properties indicate the name of the class on which a form is based and the class library containing that class. They apply to File objects.
Usage |
cClass = filFile.FileClass cClassLib = filFile.FileClassLibrary |
Example |
FOR EACH oFile IN oProj.Files IF NOT EMPTY(oFile.FileClass) ?oFile.Name + " is based on class: " + oFile.FileClass + ; " from classlib: " + oFile.FileClassLibrary ENDIF ENDFOR |
See Also |