add_check_box方法

add_check_box(upper_left_row, top, upper_left_column, left, height, width)

向工作表添加一个复选框。

返回

新的 CheckBox 对象索引。

def add_check_box(self, upper_left_row, top, upper_left_column, left, height, width):
    ...
范围类型描述
upper_left_rowint左上行索引。
topint表示复选框相对于其左行的垂直偏移量,以像素为单位。
upper_left_columnint左上列索引。
leftint表示文本框与其左列的水平偏移量,以像素为单位。
heightint文本框的高度,以像素为单位。
widthint文本框的宽度,以像素为单位。

例子


# add a CheckBox
checkBox = shapes.add_check_box(1, 0, 1, 0, 100, 50)

也可以看看