E
Eric
Hello,
I am generating a Statechart diagram in C# and everything is going well.
In general I am using the Curved Connector for dynamically connecting
shapes.
However, if the connector needs to point back to the same shape, the
Right-Angle Connector looks much much better.
Can change the connector "style" programmatically to use the Right-Angle
Connector style? Here's the current code creating the connection:
Visio.Shape sFromState = ...
Visio.Shape sTransition = ...
Visio.Cell cFrom = sTransition.get_Cells("BeginY");
Visio.Cell cTo = sFromState.get_Cells("PinY");
cFrom.GlueTo(cTo);
Thanks for your insight,
Eric
I am generating a Statechart diagram in C# and everything is going well.
In general I am using the Curved Connector for dynamically connecting
shapes.
However, if the connector needs to point back to the same shape, the
Right-Angle Connector looks much much better.
Can change the connector "style" programmatically to use the Right-Angle
Connector style? Here's the current code creating the connection:
Visio.Shape sFromState = ...
Visio.Shape sTransition = ...
Visio.Cell cFrom = sTransition.get_Cells("BeginY");
Visio.Cell cTo = sFromState.get_Cells("PinY");
cFrom.GlueTo(cTo);
Thanks for your insight,
Eric