Backstage View - taskFormGroup - getHelperText

 

Sets the Helpertext for the 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">
      <firstColumn>
        <taskFormGroup id="tskfrmGrp" label="Label: taskFormGroup"  getHelperText="GetHelperTextTFG"/>
      </firstColumn>
      <secondColumn/>
    </tab>
  </backstage>
</customUI>

Function to be copied to a standard module:

Sub GetHelperTextTFG(control As IRibbonControl, helperText)
    helperText = "Helpertext: My Text"
End Sub


You can find this sample in download: BackstageView 1




Zurück