AddCopy
ShapeCollection.AddCopy method
将形状添加并复制到工作表中。
public Shape AddCopy(Shape sourceShape, int upperLeftRow, int top, int upperLeftColumn, int left)
范围 | 类型 | 描述 |
---|---|---|
sourceShape | Shape | 源形状。 |
upperLeftRow | Int32 | 左上行索引。 |
top | Int32 | 表示复选框与其左行的垂直偏移量,以像素为单位。 |
upperLeftColumn | Int32 | 左上列索引。 |
left | Int32 | 表示文本框相对于其左列的水平偏移量,以像素为单位。 |
返回值
新的形状对象索引。
例子
[C#]
//添加一个形状
RectangleShape rectangle = shapes.AddRectangle(2, 0, 2, 0, 130, 130);
//复制
shapes.AddCopy(rectangle, 7, 0, 7, 0);
也可以看看
- class Shape
- class ShapeCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells