バージョン

ToolTipTitle プロパティ (SharedProps)

マウス カーソルを重ねた時に ToolBase のツールチップ タイトルに表示されるテキストを取得するまたは設定します。
シンタックス
'宣言
 
Public Property ToolTipTitle As String
public string ToolTipTitle {get; set;}

プロパティ値

マウス カーソルを重ねた時に ToolBase のツールチップ タイトルに表示されるテキスト。
例外
例外解説
System.NotSupportedExceptionプロパティは、基本の Form または UserControl で定義された UltraToolbarsManager 内のツールに対して、デザインタイムに修正されます。継承されたツールは、作成された Form または UserControl のデザイナーを通して、ランタイムまたはデザインタイムに修正される必要があります。
解説

注: ツールチップがフォーマットされたテキストを表示しており (ToolTipTextFormattedUltraToolbarsManager.ToolTipDisplayStyle を参照)、UltraToolbarsManager.ShowShortcutsInToolTips がオンになっている場合、他の ToolTipTitle テキストが指定されていない場合でも、ショートカットが常にツールチップ タイトルに表示されます。

使用例
Imports Infragistics.Win

' This will tell all tools on the Toolbar to use Formatted tooltips only. This means they
' will use the tool.SharedProps.ToolTipTextFormatted, not tool.SharedProps.ToolTipTextFormatted
Me.UltraToolbarsManager1.ToolTipDisplayStyle = UltraWinToolbars.ToolTipDisplayStyle.Formatted

' Set a title for the tooltip. This applies regardless of the ToolTipDisplayStyle
Me.UltraToolbarsManager1.Tools("ButtonTool1").SharedProps.ToolTipTitle = "This is the tooltip title"

' Set the regular ToolTipText. This will only appear when ultraToolbarsManager1.ToolTipDisplayStyle 
' is set to Standard or if it is set to Default and the ToolTipTextFormatted is blank.
Me.UltraToolbarsManager1.Tools("ButtonTool1").SharedProps.ToolTipText = "This is an unformatted tooltip"

' Set the ToolTipTextFormatted. This will only appear when ultraToolbarsManager1.ToolTipDisplayStyle 
' is set to Formatted or Default.
Me.UltraToolbarsManager1.Tools("ButtonTool1").SharedProps.ToolTipTextFormatted = "This is a <span style=""font-weight:bold;"">formatted</span>&edsp;<span style=""color:Red;"">tooltip</span>."
using Infragistics.Win;

// This will tell all tools on the Toolbar to use Formatted tooltips only. This means they
// will use the tool.SharedProps.ToolTipTextFormatted, not tool.SharedProps.ToolTipTextFormatted
this.ultraToolbarsManager1.ToolTipDisplayStyle = Infragistics.Win.UltraWinToolbars.ToolTipDisplayStyle.Formatted;

// Set a title for the tooltip. This applies regardless of the ToolTipDisplayStyle
this.ultraToolbarsManager1.Tools["ButtonTool1"].SharedProps.ToolTipTitle = "This is the tooltip title";

// Set the regular ToolTipText. This will only appear when ultraToolbarsManager1.ToolTipDisplayStyle 
// is set to Standard or if it is set to Default and the ToolTipTextFormatted is blank.
this.ultraToolbarsManager1.Tools["ButtonTool1"].SharedProps.ToolTipText = "This is an unformatted tooltip";

// Set the ToolTipTextFormatted. This will only appear when ultraToolbarsManager1.ToolTipDisplayStyle 
// is set to Formatted or Default.
this.ultraToolbarsManager1.Tools["ButtonTool1"].SharedProps.ToolTipTextFormatted = "This is a <span style=\"font-weight:bold;\">formatted</span>&edsp;<span style=\"color:Red;\">tooltip</span>.";
参照