checked property

CheckBoxControl.checked property

Gets or sets a boolean value indicating either this CheckBoxControl is checked or not. The default value is False.

@property
def checked(self) -> bool:
    ...

@checked.setter
def checked(self, value: bool):
    ...

Examples

Shows how to change state of the CheckBox control.

doc = aw.Document(file_name=MY_DIR + 'ActiveX controls.docx')
shape = doc.get_child(aw.NodeType.SHAPE, 0, True).as_shape()
check_box_control = shape.ole_format.ole_control.as_check_box_control()
check_box_control.checked = True

See Also