バージョン

Text プロパティ (UltraExplorerBarItem)

UltraExplorerBarItem に表示されるテキストを取得または設定します。
シンタックス
'宣言
 
Public Property Text As String
public string Text {get; set;}
使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button17_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button17.Click

		' Add some Groups and Items to the control.  Turn off drawing while we do so.
		Me.ultraExplorerBar1.BeginUpdate()

		Dim i As Integer
		For i = 0 To 4
			Dim group As UltraExplorerBarGroup = Me.ultraExplorerBar1.Groups.Add()

			group.Text = "Group " + i.ToString()

			Dim j As Integer
			For j = 0 To 4
				Dim item As UltraExplorerBarItem = group.Items.Add()

				item.Text = "Group " + i.ToString() + " - Item " + j.ToString()
				item.ToolTipText = item.Text
			Next
		Next

		' Turn drawing back on.
		Me.ultraExplorerBar1.EndUpdate()
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button17_Click(object sender, System.EventArgs e)
		{
			// Add some Groups and Items to the control.  Turn off drawing while we do so.
			this.ultraExplorerBar1.BeginUpdate();

			for(int i = 0; i < 5; i++)
			{
				UltraExplorerBarGroup group = this.ultraExplorerBar1.Groups.Add();

				group.Text = "Group " + i.ToString();

				for (int j = 0; j < 5; j++)
				{
					UltraExplorerBarItem item = group.Items.Add();

					item.Text 		= "Group " + i.ToString() + " - Item " + j.ToString();
					item.ToolTipText	= item.Text;
				}
			}

			// Turn drawing back on.
			this.ultraExplorerBar1.EndUpdate();
		}
参照