G
Guy..L
I use the following code to glue shapes in a toolpath together.
if (shape.Name.Contains("Begin"))
{
shape.get_CellsU("Connections.Center").GlueTo(path.get_CellsU("Connections.Begin.X"));
}
else
{
path.get_CellsU("Connections.End.X").GlueTo(shape.get_CellsU("Connections.Center"));
}
When I select all shapes on the page and then move the selection, only the
glue in the if- clause breaks, all other glue on the page remains intact
including that in the else-clause.
Why?
Thank you.
if (shape.Name.Contains("Begin"))
{
shape.get_CellsU("Connections.Center").GlueTo(path.get_CellsU("Connections.Begin.X"));
}
else
{
path.get_CellsU("Connections.End.X").GlueTo(shape.get_CellsU("Connections.Center"));
}
When I select all shapes on the page and then move the selection, only the
glue in the if- clause breaks, all other glue on the page remains intact
including that in the else-clause.
Why?
Thank you.