I\'m writing an Add-In to Visio 2010 in Studio 2010 on C#. I need to read a diagram currently opened in Visio. I know how to read shapes of the diagram.
The question
For coordinates:
foreach (Visio.Page Page in Pages) { Visio.Shapes Shapes = Page.Shapes; foreach (Visio.Shape Shape in Shapes) { double x = Shape.Cells["PinX"].ResultIU; double y = Shape.Cells["PinY"].ResultIU;