Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#Declaration

[DefaultValue(true)]
[DXCategory("Appearance")]
[XtraSerializableProperty]
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.

See Also