 ---------------------------------------------------
|                                                   |
| Cell Tool Tip in Custom Window                    |
|                                                   |
| iGrid.NET 1.60 Extra Samples                      |
| Copyright (c) 10Tec Company                       |
| All rights reserved                               |
|                                                   |
| Environment: .NET Framework 1.1, VS2003           |
|                                                   |
 ---------------------------------------------------

Description:
============
This example gives you an idea of how to display a tooltip window at the required custom location if the cells text is not entirely visible.

Short Code Explanation:
=======================
In this example we created a tool tip manager which shows tool tips over cells where the text is not entirely visible. To make the tool tip manager working for a grid, invoke its AttachToolTip method:

ToolTipManager.AttachToolTip(fGrid)

In core the tool tip manager handles the CellMouseEnter, CellMouseMove, and CellMouseLeave events of iGrid.NET. In the CellMouseEnter event it starts a timer which shows a tool tip window over the cell if it is needed. In the CellMouseLeave event the tool tip is hidden. The CellMouseMove event restarts the timer if the tool tip has not been shown yet.
