ShapeCollection.AddCopy

ShapeCollection.AddCopy method

Adds and copy a shape to the worksheet.

public Shape AddCopy(Shape sourceShape, int upperLeftRow, int top, int upperLeftColumn, int left)
ParameterTypeDescription
sourceShapeShapeSource shape.
upperLeftRowInt32Upper left row index.
topInt32Represents the vertical offset of checkbox from its left row, in unit of pixel.
upperLeftColumnInt32Upper left column index.
leftInt32Represents the horizontal offset of textbox from its left column, in unit of pixel.

Return Value

The new shape object index.

Examples


[C#]
//add a shape
RectangleShape rectangle = shapes.AddRectangle(2, 0, 2, 0, 130, 130);
//copy
shapes.AddCopy(rectangle, 7, 0, 7, 0);

See Also