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

EditorRow.Enabled Property

Gets or sets a value indicating whether the row allows cell editors to be invoked.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
[DXCategory("Appearance")]
public bool Enabled { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the row allows you to invoke cell editors; otherwise, false.

Remarks

Setting this property to false, prevents end-users from invoking editors for cells within the row. When a row is disabled, end-users cannot access its cell values (edit, copy them to the Clipboard, etc).

If you need to prevent cell values from being altered but allow users to access them, leave the Enabled property set to true and set the row’s RowProperties.ReadOnly property to true.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Enabled 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