DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Select Method

Definition

Modifies the selection in the DataGridView control or sets input focus to the control.

public override void Select (System.Windows.Forms.AccessibleSelection flags);

Parameters

flags
AccessibleSelection

A bitwise combination of the AccessibleSelection values.

Exceptions

The Owner property value is null.

Remarks

The following table describes the action performed for each flags value.

Parameter value Action
TakeFocus Sets input focus to the DataGridView control. If the control contains any visible cells, sets focus to the cell in the first row and column.
AddSelection If the MultiSelect property value is true, selects all cells in the control.
RemoveSelection If the flags value does not contain the AddSelection value, clears the selection in the control.
All other AccessibleSelection values No action is taken.

Applies to

Termék Verziók
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also