Me.ultraGrid1.DisplayLayout.Override.AutoEditMode = Infragistics.Win.DefaultableBoolean.True
The UltraGrid allows you to enter edit mode by typing in the active cell. This improves the extensibility of your grid by allowing users to quickly begin editing a cell.
You can allow the user to enter editing mode automatically when a cell is activated and the user enters text by setting the AutoEditMode property to True, as demonstrated in the following code snippet.
In Visual Basic:
Me.ultraGrid1.DisplayLayout.Override.AutoEditMode = Infragistics.Win.DefaultableBoolean.True
In C#:
this.ultraGrid1.DisplayLayout.Override.AutoEditMode = Infragistics.Win.DefaultableBoolean.True;
Relevant Topics: