AddCheckBox

ShapeCollection.AddCheckBox method

在工作表中添加一个复选框。

public CheckBox AddCheckBox(int upperLeftRow, int top, int upperLeftColumn, int left, int height, 
    int width)
范围类型描述
upperLeftRowInt32左上行索引。
topInt32表示复选框与其左行的垂直偏移量,以像素为单位。
upperLeftColumnInt32左上列索引。
leftInt32表示文本框相对于其左列的水平偏移量,以像素为单位。
heightInt32文本框的高度,以像素为单位。
widthInt32文本框的宽度,以像素为单位。

返回值

新的 CheckBox 对象索引。

例子


[C#]

//添加一个复选框
CheckBox checkBox = shapes.AddCheckBox(1, 0, 1, 0, 100, 50);

也可以看看