add_radio_button方法
add_radio_button(self, upper_left_row, top, upper_left_column, left, height, width)
向工作表添加一个 RadioButton。
返回
RadioButton 对象。
def add_radio_button(self, upper_left_row, top, upper_left_column, left, height, width):
...
范围 | 类型 | 描述 |
---|---|---|
upper_left_row | int | 左上行索引。 |
top | int | 表示RadioButton相对于其左行的垂直偏移量,以像素为单位。 |
upper_left_column | int | 左上角的列索引。 |
left | int | 表示RadioButton相对于其左列的水平偏移量,以像素为单位。 |
height | int | 表示RadioButton的高度,单位为像素。 |
width | int | 表示RadioButton的宽度,单位为像素。 |
例子
# add a radio button
radioButton = shapes.add_radio_button(1, 0, 1, 0, 100, 50)