バージョン

TabNavigation プロパティ

セル間を移動するときの[Tab]キーの動作を取得または設定します。
シンタックス
'宣言
 
Public Property TabNavigation As TabNavigation
public TabNavigation TabNavigation {get; set;}
解説

TabNavigation プロパティを使用すると、タブキーの押下によってタブオーダーの次のコントロールをアクティブにするか (NextControl) 、または次のセルに移動するか (NextCell) を指定できます。NextControlOnLastCell に設定すると、タブ キーの押下によって NextCell の設定と同じ動作が発生しますが、コントロールによって表示されている最後のセルがアクティブな場合、またはコントロールによって表示されている最初のセルがアクティブで Shift キーが同時に押された場合に、タブ オーダーの次のコントロールがアクティブになります。

使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinTree

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        '	Use the ActiveCellAppearance to bring attention to the cell
        '	with the input focus
        Me.ultraTree1.ColumnSettings.ActiveCellAppearance.BackColor = Color.Red
        Me.ultraTree1.ColumnSettings.ActiveCellAppearance.ForeColor = Color.White

        '	Set AllowCellEdit to 'ActivateOnly' so that clicking a cell does
        '	not put in into edit mode immediately
        Me.ultraTree1.ColumnSettings.AllowCellEdit = AllowCellEdit.ActivateOnly

        '	Set TabNavigation to 'NextCell' so that the tab key can be used to
        '	navigate to a cell
        Me.ultraTree1.ColumnSettings.TabNavigation = TabNavigation.NextCell

        '	Enable tooltips for cells whose value is not fully visible
        Me.ultraTree1.ColumnSettings.TipStyleCell = TipStyleCell.Show

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinTree;
using System.Diagnostics;

		private void button1_Click(object sender, System.EventArgs e)
		{
			//	Use the ActiveCellAppearance to bring attention to the cell
			//	with the input focus
			this.ultraTree1.ColumnSettings.ActiveCellAppearance.BackColor = Color.Red;
			this.ultraTree1.ColumnSettings.ActiveCellAppearance.ForeColor = Color.White;

			//	Set AllowCellEdit to 'ActivateOnly' so that clicking a cell does
			//	not put in into edit mode immediately
			this.ultraTree1.ColumnSettings.AllowCellEdit = AllowCellEdit.ActivateOnly;

			//	Set TabNavigation to 'NextCell' so that the tab key can be used to
			//	navigate to a cell
			this.ultraTree1.ColumnSettings.TabNavigation = TabNavigation.NextCell;

			//	Enable tooltips for cells whose value is not fully visible
			this.ultraTree1.ColumnSettings.TipStyleCell = TipStyleCell.Show;
		}
参照