Y
YvesP
Hi,
I'm writing an application to generate visualisations of connections
between some software components. To accomplish this, I have to runtime
build some shapes consisting of a different parts. After creating and
clearing a selection object, I add the different shapes to the
selection that make up the composite drawing. Dispite of what the help
in MSDN says, the 'Group' method does not return the resulting shape.
Can anyone tell me how I can get a hold of the grouped shape? Next is a
code snippet that should give an idea what I am trying to accomplish:
Dim lSelection As Selection
Set lSelection = lv_Application.ActiveWindow.Selection
lSelection.Delete 'empty the selection
...
Call lSelection.Select(lv_SomeShape part)
Call lSelection.Select(lv_SomeShape part)
lSelection.Group 'lv_ResultShape = lSelection.Group is incorrect
... ' ?? what is the resulting shape??
Thanks in advance for any support on this.
Regards.
Yves
I'm writing an application to generate visualisations of connections
between some software components. To accomplish this, I have to runtime
build some shapes consisting of a different parts. After creating and
clearing a selection object, I add the different shapes to the
selection that make up the composite drawing. Dispite of what the help
in MSDN says, the 'Group' method does not return the resulting shape.
Can anyone tell me how I can get a hold of the grouped shape? Next is a
code snippet that should give an idea what I am trying to accomplish:
Dim lSelection As Selection
Set lSelection = lv_Application.ActiveWindow.Selection
lSelection.Delete 'empty the selection
...
Call lSelection.Select(lv_SomeShape part)
Call lSelection.Select(lv_SomeShape part)
lSelection.Group 'lv_ResultShape = lSelection.Group is incorrect
... ' ?? what is the resulting shape??
Thanks in advance for any support on this.
Regards.
Yves