ToggleButton - getPressed

 

ToggleButtonSets the value that indicates whether the ToggleButton is pressed or not.

 




Sample Ribbon XML file:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="CallbackOnLoad">
      <ribbon startFromScratch="false">
            <tabs><tab id="Toogle Button Demo" label="Toogle Button Demo">
                <group id="MyGroup" label="Toogle Button Demo">
                    <toggleButton id="MyToggleButton1" 
                      size="large" label="Big Toggle Button" 
                      imageMso="HappyFace"
                      getPressed="MyToggleButtonCallbackGetPressed" 
                      onAction="MyToggleButtonCallbackOnAction"/>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI> 

Function to be copied to a standard module:

Sub CallbackGetPressed(control As IRibbonControl, _
                       ByRef pressed)
    ' Callback getPressed
    pressed = True
End Sub

You can find this sample in Sample DB 2





Back