AddAutoShape

ShapeCollection.AddAutoShape method

将自选图形添加到工作表。

public Shape AddAutoShape(AutoShapeType type, int upperLeftRow, int top, int upperLeftColumn, 
    int left, int height, int width)
范围类型描述
typeAutoShapeType自动形状类型。
upperLeftRowInt32左上行索引。
topInt32表示 Shape 与其左行的垂直偏移量,以像素为单位。
upperLeftColumnInt32左上列索引。
leftInt32表示 Shape 与其左列的水平偏移量,以像素为单位。
heightInt32表示Shape的高度,以像素为单位。
widthInt32表示Shape的宽度,以像素为单位。

返回值

形状对象。

评论

类型不能是 Chart/Comment/Picture/OleObject/Polygon/DialogBox

例子


[C#]
//将自选图形添加到工作表。
Shape autoShape = shapes.AddAutoShape(AutoShapeType.Cube, 1, 0, 1, 0, 100, 50);

也可以看看