JJ
Jisha Joy
Syncfusion Team
July 7, 2009 04:54 AM UTC
Hi Deepa,
You could get the key value entered in the cell by using e.KeyChar property. See the code:
void gridControl1_CurrentCellKeyPress(object sender, KeyPressEventArgs e)
{
Console.WriteLine(e.KeyChar.ToString());
}
Let me know if this does not serve your needs.
Regards,
Jisha