Connection points

A

Anthony

Hi

I would like to find out all the connection points on a shape and then when
I connect the shape to another shape to specify which connection point to be
used. Please let me know how to do it programmatically

Thanks

Anthony
 
J

JuneTheSecond

To find connection points, RowCount property might be used to count them,,
N = shp.RowCount(visSectionConnectionPts)
To find any property, CellsSorce property might be used,,,,
For I = 1 To N
Debug.Print shp.CellsSRC(visSectionConnectionPts, I - 1, visX).Formula
Next
To find that connection is added, ConnectionsAdded might be used.
I hope you would study about events and Connect object.
 

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