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);
public override void Select (System.Windows.Forms.AccessibleSelection flags);
override this.Select : System.Windows.Forms.AccessibleSelection -> unit
Public Overrides Sub Select (flags As AccessibleSelection)

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

See also