バージョン

ToolTipText プロパティ (UltraExplorerBarGroup)

ツールヒントに表示されるテキストを取得または設定します。テキストを指定しなければ、UltraExplorerBarGroup のテキスト プロパティの内容がツールヒントに表示されます。
シンタックス
'宣言
 
Public Property ToolTipText As String
public string ToolTipText {get; set;}
解説

ツールヒントが表示されるかどうかは、ShowToolTips プロパティを設定することで制御できます。

注: ToolTipText プロパティを明示的に設定した場合は、UltraExplorerBarGroup のテキストが完全に表示されているときでも、ツールヒントが表示されます。

それ以外の場合は、Group のテキストがヘッダーで完全に表示されていない場合に限ってツールチップが表示されます。

使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button30_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button30.Click

		' For every Group that has a Key of "Options" and no tooltip text, set the tooltip text to "Drawing Options"
		Dim group As UltraExplorerBarGroup

		For Each group In Me.ultraExplorerBar1.Groups
			If (group.Key = "Options" AndAlso group.ToolTipText.Length = 0) Then
				group.ToolTipText = "Drawing Options"
			End If
		Next

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


		private void button30_Click(object sender, System.EventArgs e)
		{
			// For every Group that has a Key of "Options" and no tooltip text, set the tooltip text to "Drawing Options"
			foreach(UltraExplorerBarGroup group in this.ultraExplorerBar1.Groups)
			{
				if (group.Key == "Options" && group.ToolTipText.Length == 0)
					group.ToolTipText = "Drawing Options";
			}
		}
参照