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
 
Top