This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'VBA | |
'Checkbox | |
Sub chkBox_onAction(control As IRibbonControl, isPressed As Boolean) | |
'Display status of checkbox in cell: TRUE or FALSE | |
Sheet1.Range("H9").Value = isPressed | |
End Sub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--XML--> | |
<!--Checkbox--> | |
<group id="grp_chkBox" label="Checkbox"> | |
<labelControl id="lblCtrl_dummy1" /> | |
<checkBox id="chkBox" label="View 1" onAction="chkBox_onAction"/> | |
</group> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment