バージョン

Rename メソッド (UltraExplorerBarGroup)

UltraExplorerBarGroup に現在割り当てられているエディターを編集モードにし、UltraExplorerBarGroup 名のインプレース編集を可能にするエディターをGroupHeaderに表示します。
シンタックス
'宣言
 
Public Sub Rename() 
public void Rename()
使用例
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();
		}
参照