A
Andrew
I have a series of drawing objects connected by connector lines. I am
using the following to retrieve the name of the object connected by
the line:
dim sh as shape
For Each sh In ActiveSheet.Shapes
debug.print sh.ConnectorFormat.BeginConnectedShape.Name
Next
However, for grouped objects this returns the name of the sub item
which the connector is attached to rather than the group name, eg.
"Line32" is returned rather than "Group15", where Line32 is contained
within Group15.
Is there any way to determine the name of the group that a particular
object making up that group is in?
Thanks a lot,
Andrew
using the following to retrieve the name of the object connected by
the line:
dim sh as shape
For Each sh In ActiveSheet.Shapes
debug.print sh.ConnectorFormat.BeginConnectedShape.Name
Next
However, for grouped objects this returns the name of the sub item
which the connector is attached to rather than the group name, eg.
"Line32" is returned rather than "Group15", where Line32 is contained
within Group15.
Is there any way to determine the name of the group that a particular
object making up that group is in?
Thanks a lot,
Andrew