Setting Default Snap & Glue Settings

D

dsmith

Is there any way to set the defaults for Snap & Glue settings so that when a
new Visio drawing is created my defaults will apply. Using a Visio template
is not feasible.

I would like to establish them via stencil, master shapes, or by the drawing
creation event.

Also, I am not able to determine where these settings are stored in the
shapesheets for either the drawing or page shapesheets.

Regards,
 
J

JuneTheSecond

Document.SnapSettings and GlueSettings properties might be ways.
Current settings might be known by
Debug.Print Hex(ActiveDocument.GlueSettings)
Debug.Print Hex(ActiveDocument.SnapSettings)
 
Top