VBA code to list database entity properties

G

Gez

Hi,

I can iterate through the shape objects and list these but how do I go
further and list the physical names, data types and notes.

Set vsoShapes = vsoPage.Shapes
For Each vsoshape In vsoShapes
Debug.Print vsoshape.NameID
Next
 
Top