Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1016 Bytes

File metadata and controls

28 lines (18 loc) · 1016 Bytes

ActiveX Controls

Toggle Buttons

The ToggleButton control represents a button which maintains either a pressed or unpressed state (like a light switch).

Insertion

"Developer" > "Insert" > "ActiveX Controls" > "Toggle Button"

a screenshot of a toggle button in the "off" state.

a screenshot of a toggle button in the "on" state.

Properties

name description
Caption Human-friendly text to instruct the user.
Value The current state of the button (i.e. True if pressed, otherwise False).
LinkedCell The address of a specified cell which is bidirectionally associated with control's value.

Events

name description
Click (default) Triggers when the button is pressed or unpressed.
Change Triggers when the button's value is changed. Triggers before the Click event in the control's event lifecycle.