Reorder

Reorder(int, IShape)

Moves a shape from the collection to the specified position.

public void Reorder(int index, IShape shape)
ParameterTypeDescription
indexInt32Target index.
shapeIShapeShape to move.

See Also


Reorder(int, params IShape[])

Moves shapes from the collection to the specified position. Shapes will be placed starting from index in order they appear in list.

public void Reorder(int index, params IShape[] shapes)
ParameterTypeDescription
indexInt32Target index.
shapesIShape[]Shapes to move.

See Also