getSize

 

getGetSizeSets the value that specifies the size of a Control.

Possible values:
0 = "nomal"
1 = "large"


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 CallbackGetSize(control As IRibbonControl, _
                    ByRef size)
    ' Callback size
    ' 0 = normal
    ' 1 = large
    Select Case control.ID
        Case "myBtn1"
            size = 0
        Case "myBtn2"
            size = 1
    End Select
End Sub



You can find this sample in Sample DB 2

 

 

Back