You are here: Backstage View - tab - getTitle
Backstage View - tab - getTitle
Sets the Title for a control.
Sample Ribbon XML file:
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon startFromScratch="false">
<!-- Ribbon XML -->
</ribbon>
<backstage>
<tab id="bTab1" label="Label 1. Tab" getTitle="GetTitle"/>
</backstage>
</customUI>
Function to be copied to a standard module:
Sub GetTitle(control As IRibbonControl, title)
title = "Title Place"
End Sub
You can find this sample in download: BackstageView 1

