Skip to main content

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.v23.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