バージョン

TipStyleHeader プロパティ

マウスがヘッダーの上で一時停止した時にヒントが表示されるかどうかを決定する値を返すまたは設定します。
シンタックス
'宣言
 
Public Property TipStyleHeader As TipStyle
public TipStyle TipStyleHeader {get; set;}
解説

このプロパティは、このオーバーライドで制御されているバンドまたはグリッドのヘッダーがポップアップのツールチップを表示できるかどうかを決定します。デフォルトで、キャプションを完全に表示できない場合には、ヘッダーのヒントにヘッダーのキャプションが表示されます。HeaderBaseHeaderBase.ToolTipText プロパティを使用して、ヘッダーのツールチップにカスタム テキストを表示するように指定できます。

使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub Button60_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button60.Click

      ' Set the TipStyleCell to disable the cell tooltips.
      Me.UltraGrid1.DisplayLayout.Override.TipStyleCell = TipStyle.Hide

      ' You can override that grid-wide setting for a particular band by setting it on the 
      ' override of that band. Enable cell tooltips on band 2.
      Me.UltraGrid1.DisplayLayout.Bands(2).Override.TipStyleCell = TipStyle.Show

  End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void button60_Click(object sender, System.EventArgs e)
{

	// Set the TipStyleCell to disable the cell tooltips.
	this.ultraGrid1.DisplayLayout.Override.TipStyleCell = TipStyle.Hide;

	// You can override that grid-wide setting for a particular band by setting it on the 
	// override of that band. Enable cell tooltips on band 2.
	this.ultraGrid1.DisplayLayout.Bands[2].Override.TipStyleCell = TipStyle.Show;

}
参照