You are here:   getKeytip

getKeytip

 

getKeytipSets the Keytip for a control. To display key tips press the Alt button.

(Minimum one, maximum three characters possible)

 



Sample Ribbon XML file:
 

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="CallbackOnLoad">
    <ribbon startFromScratch="false">
        <tabs>
            <tab id="MyTab" label="Button Demo">
                <group id="MyGroup" label="Button Demo">
                    <button id="MyBtn1" getSize="CallbackGetSize" 
                      getLabel="CallbackGetLabel"
                      imageMso="BevelShapeGallery"
                      getKeytip="CallbackGetKeytip"
                      onAction="MyButtonCallbackOnAction"
                      getScreentip="CallbackAllgGetItemScreentip" 
                      getSupertip="CallbackAllgGetItemSupertip"/>
                    <button id="MyBtn2" getSize="CallbackGetSize" 
                      getLabel="CallbackGetLabel"
                      imageMso="BevelShapeGallery"
                      getKeytip="CallbackGetKeytip"
                      onAction="MyButtonCallbackOnAction"/>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI>  

Function to be copied to a standard module:

Sub CallbackGetKeytip(control As IRibbonControl, _
                      ByRef keytip)
   
    ' Callback Keytip
   
    Select Case control.ID
        Case "MyBtn1"
            keytip = "Bt1"
        Case "MyBtn2"
            keytip = "Bt2"
    End Select
End Sub


You can find this sample in Sample DB 2

 

 

Back

Last Updates:

19.01.2013
Update Downloads for "Trusted Locations" - Versions for Office 2013 ...


29.08.2012
Revised versions for IDBE RibbonCreator2010 (Version 1.1014a) ...

07.08.2012
Update Group Attributes and Callbacks. ...

02.08.2012
New Access FAQ added. New Download added. ...

 

Last update:
April 07, 2013, 22:24