Button - getShowLabel

 

getShowLabelDer Callback liefert zurück ob ein Label angezeigt werden soll.

(Kann nicht zusammen mit dem Callback getLabel verwendet werden)




Beispiel XML Ribbon Datei:

<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" 
                      label="Button 1" imageMso="BevelShapeGallery"
                      getKeytip="CallbackGetKeytip" 
                      onAction="MyButtonCallbackOnAction"
                      getShowLabel="MyButtonCallbackShowLabel"
                      getScreentip="CallbackAllgGetItemScreentip" 
                      getSupertip="CallbackAllgGetItemSupertip"/>
                    <button id="MyBtn2" getSize="CallbackGetSize" 
                      getLabel="CallbackGetLabel" 
                      imageMso="BevelShapeGallery"
                      getKeytip="CallbackGetKeytip" 
                      onAction="MyButtonCallbackOnAction"/>
                   </group>
            </tab>
        </tabs>
    </ribbon>
</customUI>

 


Funktion in einem Standardmodul:

Sub MyButtonCallbackShowLabel(control As IRibbonControl, _
                              ByRef showLabel)
    ' Callback ob das Label angezeigt werden soll
    ' Nicht mit Callback getShowLabel verwendbar
    Select Case control.ID
        Case "MyBtn1"
            showLabel = False
    End Select
End Sub


Sie finden dieses Beispiel auch in der Beispieldatenbank 2






Zurück