DataGridSelectionUnit Enum

Definition

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

public enum class DataGridSelectionUnit
public enum DataGridSelectionUnit
type DataGridSelectionUnit = 
Public Enum DataGridSelectionUnit
Inheritance
DataGridSelectionUnit

Fields

Cell 0

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

CellOrRowHeader 2

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

FullRow 1

Only full rows are selectable. Clicking a cell or 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

See also