Version

Rename Method (UltraExplorerBarItem)

Puts the editor currently assigned to the UltraExplorerBarItem into edit mode and displays the editor in the UltraExplorerBarItem to allow in-place editing of the UltraExplorerBarItem name.
Syntax
'Declaration
 
Public Sub Rename() 
public void Rename()
Example
The following code puts the text of the first Item in the first Group into edit mode.

Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button45_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button45.Click

		' Put the first item in the first group into edit mode.
		If (Me.ultraExplorerBar1.Groups.Count > 0 AndAlso Me.ultraExplorerBar1.Groups(0).Items.Count > 0) Then
			Me.ultraExplorerBar1.Groups(0).Items(0).Rename()
		End If

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button45_Click(object sender, System.EventArgs e)
		{
			// Put the first item in the first group into edit mode.
			if (this.ultraExplorerBar1.Groups.Count				> 0  &&
				this.ultraExplorerBar1.Groups[0].Items.Count	> 0)
			{
				this.ultraExplorerBar1.Groups[0].Items[0].Rename();
			}
		
		}
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