Sie sind hier:   DropDown - getSelectedItemIndex

DropDown - getSelectedItemIndex

 

DropDownDieser Callback gibt dem Control den Index des Items zurück dessen Eintrag markiert angezeigt werden soll.

(Nicht zusammen mit getSelectedItemID verwendbar)












Beispiel XML Ribbon Datei:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="CallbackOnLoad">
    <ribbon startFromScratch="false">
        <tabs>
            <tab id="MyTab" label="DropDown Beispiel">
                <group id="MyGroup" label="DropDown Beispiel">
                    <labelControl id="myLabel1" label="Beispiel:" />
                    <labelControl id="myLabel2" label="DropDown" />
                    <dropDown id="myDropDown" 
                      label="Mein Dropdown:"
                      showLabel="true" 
                      getItemImage="CallbackDDGetItemImage" 
                      getItemCount="CallbackDDGetItemCount" 
                      getItemLabel="CallbackDDGetItemLabel" 
                      getItemScreentip="CallbackDDGetItemScreentip" 
                      getItemSupertip="CallbackDDGetItemSupertip" 
                      getItemID="CallbackDDGetItemID" 
                      imageMso="PictureEffectsGlowGallery" 
                      getSelectedItemIndex="CallbackDDGetSelectedItemIndex" 
                      onAction="CallbackDropDownOnAction" 
                      sizeString= "WWWWWWWWWWWWW">
                    </dropDown>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI> 

Funktion in einem Standardmodul:

Sub CallbackDDGetSelectedItemIndex(control As IRibbonControl, _
                                   ByRef index)
    ' Callback gibt dem Control den index des Controls
    ' zurück welcher Item gewählt angezeigt werden soll
    Select Case control.ID
        Case "myDropDown"
            index = 2  
    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: