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