How to Display Members of CLASS Shape type

H

Hemant

Hai .....,
I have an add-in build that gives all the shapes in the
current page using the following method:

Visio.Page currentPage = visioApp.ActiveWindow.Page as Visio.Page;
int count = currentPage.Shapes.Count;

Now what I want is, if any of the shape in this collection is of type
Class, then I would like to display the Class's Attribute, Its
Operations and all that. How Can I do this.

Regards,
Hemant
 
Top