AD
Administrator
Syncfusion Team
January 24, 2005 07:13 AM UTC
One way you can do this is to handle the CurrentCellGotFocus event and there use SendKeys to send an Insert key to toggle teh insert state of the active control.
private void gridControl1_CurrentCellControlGotFocus(object sender, ControlEventArgs e)
{
SendKeys.Send("{INSERT}");
}