Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to automate documentation of classes

Status
Not open for further replies.

thomascd

Programmer
Joined
Mar 20, 2002
Messages
29
Location
GB
Hi
Any tip to automate the documentation of a class in a class library ?
I would like to sweep all class libraries in a project, then all classes in each library and print their methods, properties and description ?
Am I expecting too much ?
 
thomasCD

Am I expecting too much ?

Probably. You can load your whole project in the class browser, and view the code of the whole project and print that, or load each libraries individually in the class browser, and print out that code.

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
ThomasCD,

Another thing you could do is to call AMEMBERS() to capture the names of all the properties, methods and member objects. And, for each member object, call AMEMBERS() recursively.

Mike


Mike Lewis
Edinburgh, Scotland
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top