 ---------------------------------------------------
|                                                   |
| Cell Text Editor Key Handling                     |
|                                                   |
| iGrid.NET 1.60 Extra Samples                      |
| Copyright (c) 10Tec Company                       |
| All rights reserved                               |
|                                                   |
| Environment: .NET Framework 1.1, VS2003           |
|                                                   |
 ---------------------------------------------------

Description:
============
In this example we handle the Up and Down keys while a cell in iGrid.NET is 
being edited and move the current cell up or down respectively.

Short Code Explanation:
=======================
When a cell in iGrid.NET is edited as text, a text box is placed over it. When 
the user presses keyboard keys, they are sent to that text box, not to the grid. 
As a result the KeyPress event of iGrid is not raised. For this case iGrid.NET 
has a set of special events, their names start with TextBoxKey, which translate 
these keyboard messages to you. 

In this example we use the TextBoxKeyDown event to catch the Up and Down keys 
when a cell is edited, try to finish editing, and move the current cell in the 
respective direction. 
