Sie sind hier: getSize
getSize
Der Callback liefert dem Control die Anzeigegröße
wobei als Rückgabe nur:
0 für "nomal" und
1 für "large" verwendet werden kann.
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"
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>
Funktion in einem Standardmodul:
Sub CallbackGetSize(control As IRibbonControl, _
ByRef size)
' Callback liefert dem Control die Größe
' 0 = normal
' 1 = large
Select Case control.ID
Case "myBtn1"
size = 0
Case "myBtn2"
size = 1
End Select
End Sub
Sie finden dieses Beispiel auch in der Beispieldatenbank 2

