IRibbonUI.ActivateTab Method (Office)
Activates the specified custom tab.
Version Information
Version Added: Office 2010
Syntax
expression .ActivateTab(ControlID)
expression An expression that returns a IRibbonUI object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
ControlID |
Required |
String |
Specifies the Id of the custom Ribbon tab to be activated. |
Return Value
Nothing
Example
The following code makes the custom tab the active tab.
Public myRibbon As IRibbonUI
Sub tabActivate(ByVal control As IRibbonControl)
myRibbon.ActivateTab (control.ID)
End Sub