Sie sind hier:   Gallery - onAction

Gallery - onAction

 

Gallery

Callback wenn auf ein Gallery Item geklickt wurde.

 

 









Beispiel XML Ribbon Datei:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="CallbackOnLoad">
    <ribbon startFromScratch="false">
        <tabs>
            <tab id="MyTab" label="Gallery Beispiel">
                <group id="MyGroup" label="Gallery Beispiel">
                    <labelControl id="myLabel1" label="Beispiel:" />
                    <labelControl id="myLabel2" label="Gallery" />
                    <gallery id="MyPictureGallery1" 
                      label="Meine Gallerie" 
                      columns="2" rows="2" size="large" 
                      getItemImage="CallbackGetItemImage" 
                      getItemCount="CallbackGetItemCount" 
                      getItemLabel="CallbackGetItemLabel" 
                      getItemScreentip="CallbackGetItemScreentip" 
                      getItemSupertip="CallbackGetItemSupertip" 
                      getItemID="CallbackGetItemID" 
                      imageMso="PictureEffectsGlowGallery" 
                      getItemWidth="CallbackGetItemWidth" 
                      getItemHeight="CallbackGetItemHeight"
                      getSelectedItemID="CallbackGetSelectedItemID" 
                      onAction="CallbackGalleryOnAction">
                    </gallery>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI>  

Funktion in einem Standardmodul:

Sub CallbackGalleryOnAction(control As IRibbonControl, _
                            selectedId As String, _
                            selectedIndex As Integer)
    ' Callback wenn auf ein Gallery Item
    ' geklickt wurde
    Select Case control.ID
        Case "MyPictureGallery1"
            MsgBox "Sie haben " & DLookup("txtName", _
                   "tblBilder", "txtPicName = '" & _
                   Format(selectedIndex, "00") & "'") & _
                   " gewählt", vbInformation, _
                   "Gallery Beispiel"
    End Select
End Sub




Sie finden dieses Beispiel auch in der Beispieldatenbank 2

 

 




Zurück

Letzte Änderungen:

18.03.2021
Neuer Download für Excel hinzugefügt. ...

25.10.2018
Seite "Vertrauenswürdige Speicherorte" - aktualisiert.. ...

22.10.2018
Neuer Download hinzugefügt. ...

08.04.2018
IDBE RibbonCreator 2016 (x86 and x64) für Office 2013 und Office 2016 - Neue Version. ...

 

Letzte Änderung: