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

TreeListOptionsColumn.ReadOnly Property

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

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual 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
TreeListColumn
.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.

Cell values can still be modified in code using the TreeListNode.SetValue method regardless of the ReadOnly property’s value.

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