Skip to main content
A newer version of this page is available. .

OptionsColumn.ReadOnly Property

Gets or sets whether end-users are prevented from editing the column’s cell values.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool ReadOnly { get; set; }

Property Value

Type Default Description
Boolean **false**

true if end-users are prevented from modifying the column’s cell values; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ReadOnly
GridColumn
.OptionsColumn.ReadOnly
LayoutViewColumn
.OptionsColumn.ReadOnly
BandedGridColumn
.OptionsColumn.ReadOnly

Remarks

If the ReadOnly property is set to true, the cell values of columns cannot be modified by end-users. In this case cell editors can be invoked but end-users can only select and copy an editor’s content. This option is not in effect if the column’s OptionsColumn.AllowEdit or the View’s ColumnView.Editable option is disabled.

Cell values can still be modified in code using the ColumnView.SetRowCellValue method regardless of the ReadOnly property’s setting.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ReadOnly property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also