Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 1.03 KB

File metadata and controls

27 lines (18 loc) · 1.03 KB

ActiveX Controls

Check Boxes

The CheckBox control represents a checkable box belonging to a specified group from which zero or more may be selected at any given time.

Insertion

For each box: "Developer" > "Insert" > "ActiveX Controls" > "Check Box".

a screenshot depicting two of four checked boxes

Properties

name description
Caption A human-friendly name for the checkable option.
GroupName Associates the control with a logical grouping of one or more controls (default: "Sheet1").
Value The current state of the control (i.e. True if checked, otherwise False).
LinkedCell The address of a specified cell which is bidirectionally associated with control's value.

Events

name description
Click (default) Triggers when an option is checked.
Change Triggers when the control's value is changed. Triggers before the Click event in the control's event lifecycle.