バージョン

ToolTipDisplayStyle プロパティ

すべてのツールチップのスタイルを指定する値を返すか、設定します。
シンタックス
'宣言
 
Public Property ToolTipDisplayStyle As ToolTipDisplayStyle
public ToolTipDisplayStyle ToolTipDisplayStyle {get; set;}
解説

Formatted に設定すれば、ツールチップは ToolTipTextFormatted プロパティを使用して表示できます。ToolTipTextFormatted が特定のツールに設定されなければ、ツールチップは ToolTipText またはツールの Caption に戻ります。

このプロパティが None に設定されると、ツールにはツールチップは表示されません。これは ShowToolTips プロパティと ShowToolTips プロパティをオーバーライドします。

使用例
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>.";
参照