Version

TabItemToolbar Property

Gets the toolbar which shows tools on the right side of the ribbon tab area.
Syntax
'Declaration
 
Public ReadOnly Property TabItemToolbar As RibbonTabItemToolbar
public RibbonTabItemToolbar TabItemToolbar {get;}
Example
The following sample demonstrates how to add a tool to the ribbon tab item toolbar.

Imports Infragistics.Win.UltraWinToolbars

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
	' Create a help button at add the root tool to the toolbars manager's
	' tools collection
	Dim helpRootTool As ButtonTool = New ButtonTool("Help")
	helpRootTool.SharedProps.Caption = "Help"
	helpRootTool.SharedProps.DisplayStyle = ToolDisplayStyle.ImageAndText
	Me.UltraToolbarsManager1.Tools.Add(helpRootTool)

	' Add an instance of the help button the the ribbon tab item toolbar
	Me.UltraToolbarsManager1.Ribbon.TabItemToolbar.Tools.AddTool("Help")
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinToolbars;

private void Form1_Load( object sender, EventArgs e )
{
	// Create a help button at add the root tool to the toolbars manager's
	// tools collection
	ButtonTool helpRootTool = new ButtonTool( "Help" );
	helpRootTool.SharedProps.Caption = "Help";
	helpRootTool.SharedProps.DisplayStyle = ToolDisplayStyle.ImageAndText;
	this.ultraToolbarsManager1.Tools.Add( helpRootTool );

	// Add an instance of the help button the the ribbon tab item toolbar
	this.ultraToolbarsManager1.Ribbon.TabItemToolbar.Tools.AddTool( "Help" );
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also