glue_shapes_in_container method

glue_shapes_in_container(shape_from_id, shape_to_begin_connection_name, shape_to_end_connection_name, shape_to_id)

Glue shapes in container using connection name

def glue_shapes_in_container(self, shape_from_id, shape_to_begin_connection_name, shape_to_end_connection_name, shape_to_id):
    ...
Parameter Type Description
shape_from_id int The ID of shape which is glue from Shape.
shape_to_begin_connection_name str The location on the first connection name where to glue .
shape_to_end_connection_name str The location on the end connection name where to glue .
shape_to_id int The ID of shape where to glue to Shape.

glue_shapes_in_container(shape_from_id, shape_to_begin_connection_index, shape_to_end_connection_index, shape_to_id)

Glue shapes in container

def glue_shapes_in_container(self, shape_from_id, shape_to_begin_connection_index, shape_to_end_connection_index, shape_to_id):
    ...
Parameter Type Description
shape_from_id int The ID of shape which is glue from Shape.
shape_to_begin_connection_index int The location on the first connection index where to glue .
shape_to_end_connection_index int The location on the end connection index where to glue .
shape_to_id int The ID of shape where to glue to Shape.

See Also