DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Select Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.