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

VGridControlBase.EditingValue Property

Gets or sets the cell value currently being edited.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.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