DataGridSelectionUnit Enum
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.
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
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.