Interface IGridCopyPaste
For Custom Copy To Clipboard.
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public interface IGridCopyPaste
Methods
Copy(GridCellData, GridRangeInfoList)
User use this method to implement Cut Operation
Declaration
void Copy(GridCellData gridCellData, GridRangeInfoList rangeList)
Parameters
Type | Name | Description |
---|---|---|
GridCellData | gridCellData | Contain The Currently Selected Cells Style |
GridRangeInfoList | rangeList | Contain The Currently Selected Range |
Cut(GridCellData, GridRangeInfoList)
User use this method to implement Copy Operation
Declaration
void Cut(GridCellData gridCellData, GridRangeInfoList rangeList)
Parameters
Type | Name | Description |
---|---|---|
GridCellData | gridCellData | Contain The Currently Selected Cells Style |
GridRangeInfoList | rangeList | Contain The Currently Selected Range |
Paste(GridRangeInfoList)
User use this method to implement Paste Operation
Declaration
DataObject Paste(GridRangeInfoList rangeList)
Parameters
Type | Name | Description |
---|---|---|
GridRangeInfoList | rangeList |
Returns
Type |
---|
System.Windows.DataObject |