Edit

Share via


DataGridCell.IsReadOnly Property

Definition

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

Applies to