Version

TipStyleCell Property (UltraGridOverride)

Returns or sets a value that determines whether a tip will be displayed when the mouse pauses over a cell.
Syntax
'Declaration
 
Public Property TipStyleCell As TipStyle
public TipStyle TipStyleCell {get; set;}
Remarks

This property determines whether the cells of the band or the grid controlled by the specified override will be capable of displaying pop-up tips. Cell tips display the contents of the cell, and generally only appear when the cell's area is not large enough to display all the data it contains, and the mouse has come to rest over the cell for a period of time.

Example
Following code sets the TipStyleCell on the layout's override and a band's override.

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;

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also