DataGridCell.IsReadOnly Property
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.
Gets a value that indicates whether the cell can be put in edit mode.
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
Property Value
true
if the cell cannot be put in edit mode; otherwise, false
. The registered default is false
. For more information about what can influence the value, see DependencyProperty.
Remarks
Set the IsReadOnly property to true
to make an individual cell read-only. Set the DataGridColumn.IsReadOnly property to true
to make all cells in an individual column read-only. Set the DataGrid.IsReadOnly property to true
to make all cells in the DataGrid read-only If there is a conflict between the settings at the DataGrid, column, and cell levels, a value of true
takes precedence over a value of false
.