How to call a built in macro from a custom one

B

Brian

I'm just starting to fool around with macros in Visio. I
was wondering how to call the "move shapes" macro that is
built in under the "visio extras" from my macro. Any
suggestions?

Thanks.
 
M

Mark Nelson [MS]

Each of the built-in macros is a Visio add-on that is registered with the
application. Use the menu caption as the name of the add-on.

Application.Addons("Move Shapes...").Run ""
 
Top