Move Selection of Shapes in VBA to other location

  • Thread starter Sven Van de Velde
  • Start date
S

Sven Van de Velde

All,

How do I need to program to move a selection of multiple shapes (not a
group!) towards an other location using VBA code?
I tried to use the setcenter for each shape in the selection, but this works
very slowly!
 
M

Mark Nelson [MS]

In Visio 2003 you can use the Selection.Move method. In previous versions
you could group the shapes together, use SetCenter on the group shape and
then ungroup the shapes.
 
Top