Visio 2003 Add-in (Get Selected Shape info?)
I 'm trying to build a Add-In for Visio 2003. For this Add-In to work, I need to get the information related to theSelected Shapeon the current Active document. I have tried the following method. In the debug mode, it displays that ContainingShape = 1, when i have selected only one shape in the page. But I'm not able to extract further information. Any help on this is really appreciable
Visio.Page currentPage = visioApp.ActivePage; Visio.Selection selection = currentPage.Application.ActiveWindow.Selection; Visio.Shape selectedShape = selection.ContainingShape; |

