Version

Rename Method (UltraExplorerBarGroup)

Puts the editor currently assigned to the UltraExplorerBarGroup into edit mode and displays the editor in the GroupHeader to allow in-place editing of the UltraExplorerBarGroup name.
Syntax
'Declaration
 
Public Sub Rename() 
public void Rename()
Example
The following code shows how to cause the text in a group's header to enter edit mode.

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


	Private Sub Button35_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button35.Click

		' Put the group with key 'Foo' into edit mode.
		If (Me.ultraExplorerBar1.Groups.Exists("Foo")) Then
			Me.ultraExplorerBar1.Groups("Foo").Rename()
		End If

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


		private void button35_Click(object sender, System.EventArgs e)
		{
			// Put the group with key 'Foo' into edit mode.
			if (this.ultraExplorerBar1.Groups.Exists("Foo"))
				this.ultraExplorerBar1.Groups["Foo"].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