Version

TabIndex Property

Used for specifying the order the UltraGrid traverses the cells when tabbing. Default value is -1.
Syntax
'Declaration
 
Public Property TabIndex As Integer
public int TabIndex {get; set;}
Remarks

By default the UltraGrid determines the tab order of the cells based on their locations. You can use the TabIndex property to control the order in which the UltraGrid traverses cells of a row when tab key is used. The default value of the property is -1 which means the column will follow the default tab order. You can set the TabIndex of two or more columns to the same value in which case the tab order of those columns will follow the default tab order. You can also specify the TabIndex only on some columns and leave the TabIndex to the default value on other columns. In such a scenario the columns that have their TabIndex set to non-default values take precedence over the columns that do not have their TabIndex set.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also