You are here:   MenuSeparator - getTitle

MenuSeparator - getTitle

 

getTitle

Sets the text for the Titel of a menu separator.









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="My Group">
                    <labelControl id="myLabel1" label="Sample:" />
                    <labelControl id="myLabel2" label="Menu" />
                    
                    <menu id="MyMenu" label="Sample Menu" 
                      itemSize="normal">
                    <menuSeparator id="mySeparator1"/>
                    <menu id="MyMenuNextLevel1" label="More" 
                      itemSize="normal">
                        <button idMso="Cut"/>
                        <button idMso="Copy"/>
                        <button idMso="Paste"/>
                        <menuSeparator id="mySeparator2" 
                          getTitle="CallbackGetTitle"/>
                        <menu id="MyMenuNextLevel2" label="Big items" 
                          itemSize="large">
                            <menuSeparator id="mySeparator3"/>
                            <button id="dynaButton" label="Button" 
                              onAction="MyButtonCallbackOnAction" 
                              imageMso="HappyFace"/>
                            </menu>
                        </menu>
                    </menu>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI>

Function to be copied to a standard module:

Sub CallbackGetTitle(control As IRibbonControl, _
                     ByRef title)
    ' Callback getTitle
    Select Case control.ID
        Case "mySeparator2"
            title = "My Title"
    End Select
End Sub


You can find this sample in Sample DB 2

 

 
Back

Last Updates:

19.01.2013
Update Downloads for "Trusted Locations" - Versions for Office 2013 ...


29.08.2012
Revised versions for IDBE RibbonCreator2010 (Version 1.1014a) ...

07.08.2012
Update Group Attributes and Callbacks. ...

02.08.2012
New Access FAQ added. New Download added. ...

 

Last update:
April 07, 2013, 22:24