Class GridCutPasteEventArgs
Inherited Members
Namespace: Syncfusion.UI.Xaml.CellGrid.Helpers
Assembly: Syncfusion.SfCellGrid.WPF.dll
Syntax
public class GridCutPasteEventArgs : GridHandledEventArgs
Remarks
GridCutPasteEventArgs is a custom event argument class used by the
This event lets you supply your own clipboard formats or add support for pasting additional clipboard content.
Constructors
GridCutPasteEventArgs(GridRangeInfo)
Initializes a new GridCutPasteEventArgs object.
Declaration
public GridCutPasteEventArgs(GridRangeInfo range)
Parameters
Type | Name | Description |
---|---|---|
GridRangeInfo | range | You can save here a list of ranges that have been copied. |
Properties
Range
Gets or sets range list. You can save here a list of ranges that have been copied. This property will only be checked for the Copy operation. Can be NULL.
Declaration
public GridRangeInfo Range { get; set; }
Property Value
Type | Description |
---|---|
GridRangeInfo | Copied ranges. |