add_check_box method

add_check_box

Adds a checkbox to the worksheet.

Returns

The new CheckBox object index.

def add_check_box(self, upper_left_row, top, upper_left_column, left, height, width):
    ...
ParameterTypeDescription
upper_left_rowintUpper left row index.
topintRepresents the vertical offset of checkbox from its left row, in unit of pixel.
upper_left_columnintUpper left column index.
leftintRepresents the horizontal offset of textbox from its left column, in unit of pixel.
heightintHeight of textbox, in unit of pixel.
widthintWidth of textbox, in unit of pixel.

Example


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

See Also