I have new ribbon, that has a few buttons.
How am I add descripition to the new buttons I add?
How am I add descripition to the new buttons I add?
<button id="MybuttonID" label="My Label" screentip="My Screen Tip" onAction="MyOnActionButton"/>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab idMso="TabCreate" visible="false" />
<tab id="dbCustomTab" label="A Custom Tab" visible="true">
<group id="dbCustomGroup" label="A Custom Group">
<control idMso="Paste" label="Built-in Paste" enabled="true"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
Comment