SpreadsheetControl.RangeCopied Event
Occurs after the range content has been copied.
Namespace: DevExpress.Xpf.Spreadsheet
Assembly: DevExpress.Xpf.Spreadsheet.v24.2.dll
NuGet Package: DevExpress.Wpf.Spreadsheet
Declaration
Event Data
The RangeCopied event's data class is RangeCopiedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
IsCut | Gets or sets a value indicating whether the copied data is cut from the source range. |
RangeReference | Gets the reference to the cell range from which data has been copied. |
Remarks
Handle the RangeCopied event to perform specific actions each time an end-user copies a worksheet range using the SpreadsheetControl’s UI.
To cancel the copy operation, handle the SpreadsheetControl.RangeCopying event that is raised before the cell range is copied.
See Also