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(); }
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