Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a macro which works differently between Visio 2003 and 2010. I'm copying and pasting a shape onto the page, and trying to get a pointer to the pasted shape. In 2003, that shape is just the last shape on the page (set ShpObj = PagObj.Shapes(PagObj.Shapes.Count)). In 2010, however, it seems the pasted shape isn't always set to the last shape on the page.

Currently I am logging all the unique shapes on the page before the paste operation, then identifying new shapes after the paste operation.

I tried monitoring the application ShapeAdded event, but it doesn't seem to fire for paste operations.

Are there any other ways I might pick up the pasted shape(s)?

share|improve this question

1 Answer

up vote 1 down vote accepted

How are you doing your copying? Visio 2010 gained some more enumerations giving greater control over the paste operation in terms or position and container and callout behaviour which might effect collection order:

Visio 2010 Page.Paste

Visio 2007 Page.Paste

It's a shame Paste doesn't return a selection, but have you looked at Shape.Duplicate and Selection.Duplicate which return shape and selection objects respectively?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.