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

RowProperties.AllowEdit Property

Gets or sets whether end-users are allowed to invoke cell editors for the current row.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

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

#Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool AllowEdit { get; set; }

#Property Value

Type Default Description
Boolean true

true if end-users are allowed to invoke cell editors for the current row; otherwise, false.

#Remarks

Set the AllowEdit property to false to prevent the current row’s editor from being invoked at runtime. To disable editing all rows in the current VGridControl, use the VGridOptionsBehavior.Editable property.

To allow row data to be read but not edited, use the RowProperties.ReadOnly property.

See Also