Skip to main content

ClipboardRowCellValuePastingEventArgs.Value Property

Gets or sets a value that is pasted to cell.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public object Value { get; set; }

Property Value

Type Description
Object

A value pasted to cell.

Remarks

Use the Value property to modify a new value pasted to a grid cell. To get the old cell value, use the ClipboardRowCellValuePastingEventArgs.OldValue property.

To cancel pasting a new cell, set the ClipboardRowCellValuePastingEventArgs.Cancel property to true.

See Also