Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridView::StandardTab Property

 

Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order rather than moving focus to the next cell in the control.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property bool StandardTab {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the TAB key moves the focus to the next control in the tab order; otherwise, false.

Setting this property to false allows the TAB key to move the focus through the grid of cells. The following table describes how the cell focus changes when the given TAB key combinations are pressed.

Key combination

Result

TAB

If the StandardTab property is false, the focus moves to the next cell in the row. If the focus is in the last cell in the row, the focus moves to the first cell in the next row. If the focus is in the last cell in the DataGridView, the focus moves to the next control in the tab order.

SHIFT+TAB

If StandardTab is false, the focus moves to the previous cell in the row. If the focus is in the first cell in the row, the focus moves to the last cell in the previous row. If the focus is in the first cell in the DataGridView, the focus moves to the previous control in the tab order.

CTRL+TAB

The focus moves to the next control in the tab order.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft