Version

Changing the Behavior of the TAB Key

The default behavior for the WinGrid™ is for the TAB key to move focus from one cell to the next. You can cause a TAB keystroke to move to the next control instead of the next cell by using the TabNavigation property of the DisplayLayout object.

In Visual Basic:

Imports Infragistics.Win.UltraWinGrid
...
Private Sub Change_the_Behavior_of_the_TAB_Key_Load(ByVal sender As System.Object, _
  ByVal e As System.EventArgs) Handles MyBase.Load
	Me.UltraGrid1.DisplayLayout.TabNavigation = TabNavigation.NextControl
End Sub

In C#:

using Infragistics.Win.UltraWinGrid;
...
private void Change_the_Behavior_of_the_TAB_Key_Load(object sender, System.EventArgs e)
{
	this.ultraGrid1.DisplayLayout.TabNavigation = TabNavigation.NextControl;
}