Ler em inglês Editar

Compartilhar via


DataGridSelectionUnit Enum

Definition

Defines constants that specify whether cells, rows, or both, are used for selection in a DataGrid control.

C#
public enum DataGridSelectionUnit
Inheritance
DataGridSelectionUnit

Fields

Name Value Description
Cell 0

Only cells are selectable. Clicking a cell selects the cell. Clicking a row or column header does nothing.

FullRow 1

Only full rows are selectable. Clicking a cell or a row header selects the full row.

CellOrRowHeader 2

Cells and rows are selectable. Clicking a cell selects only the cell. Clicking a row header selects the full row.

Remarks

The DataGrid.SelectionMode and DataGrid.SelectionUnit properties together determine how users can select items in a DataGrid. For example, if the DataGrid.SelectionMode is DataGridSelectionMode.Single and the DataGrid.SelectionUnit is Cell, the user can select only one cell at a time in the DataGrid.

Applies to

Produto Versões
.NET Framework 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, 10

See also