Skip to main content

VGridControlBase.EditingValue Property

Gets or sets the cell value currently being edited.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

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

Declaration

[Browsable(false)]
public virtual object EditingValue { get; set; }

Property Value

Type Description
Object

A Object object that represents the cell value currently being edited. null (Nothing in Visual Basic) if no cell is currently being edited.

Remarks

You can use the EditingValue property to access or change the edit value. If no cell is currently being edited, assigning values to this property will have no effect.

You can also use the editor assigned to a cell to modify its value. The currently active editor can be accessed via the VGridControlBase.ActiveEditor property.

While the cell is being edited you can obtain the row and record where it resides via the VGridControlBase.FocusedRow and VGridControlBase.FocusedRecord properties.

See Also