Wrap connector arround shapes

T

Tomislav

Hello,

since recently I started to use comments of my own in Visio drawings
and connecting those comments with corresponding shapes by using
dynamic connectors. What still puzzles me is how to make this connector
wrap arround other shapes that are on it's way to avoid intersection with
those
shapes ?

Could it be done programmatically ?

Thanks

Tomislav
 
J

JuneTheSecond

My idea is to set ObjType cell and ShapePermeableX cell equal to 1.
Dim shp As Visio.Shape
For Each shp In ActivePage.Shapes
If Not shp.NameU Like "dinamic connector*" Then
shp.Cells("ObjType").FormulaU = 1
shp.Cells("ShapePermeableX").FormulaU = 1
End If
Next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top