add_auto_shape方法
add_auto_shape(self, type, upper_left_row, top, upper_left_column, left, height, width)
向工作表添加自选图形。
返回
一个 Shape 对象。
def add_auto_shape(self, type, upper_left_row, top, upper_left_column, left, height, width):
...
范围 | 类型 | 描述 |
---|---|---|
type | AutoShapeType | 自动形状类型。 |
upper_left_row | int | 左上行索引。 |
top | int | 表示 Shape 距离其左行的垂直偏移量,以像素为单位。 |
upper_left_column | int | 左上角的列索引。 |
left | int | 表示 Shape 距离其左列的水平偏移量,以像素为单位。 |
height | int | 表示Shape的高度,以像素为单位。 |
width | int | 表示Shape的宽度,以像素为单位。 |
注意事项
类型不能是 Chart/Comment/Picture/OleObject/Polygon/DialogBox
例子
from aspose.cells.drawing import AutoShapeType
# Adds a AutoShape to the worksheet.
autoShape = shapes.add_auto_shape(AutoShapeType.CUBE, 1, 0, 1, 0, 100, 50)