Class SpreadsheetCopiedEventArgs
Represents the class which holds the properties of SpreadsheetCopied event.
Inheritance
System.Object
SpreadsheetCopiedEventArgs
Namespace: Syncfusion.UI.Xaml.Spreadsheet.Helpers
Assembly: Syncfusion.SfSpreadsheet.WPF.dll
Syntax
public class SpreadsheetCopiedEventArgs : EventArgs
Constructors
SpreadsheetCopiedEventArgs(GridRangeInfo, Boolean, SpreadsheetGrid)
Initializes a new instance of the SpreadsheetCopiedEventArgs class.
Declaration
public SpreadsheetCopiedEventArgs(GridRangeInfo range, bool iscut, SpreadsheetGrid grid)
Parameters
Type | Name | Description |
---|---|---|
GridRangeInfo | range | Copied range. |
System.Boolean | iscut | If True, cut operation, else copy operation. |
SpreadsheetGrid | grid | Current grid. |
Properties
Grid
Gets the active grid in SfSpreadsheet.
Declaration
public SpreadsheetGrid Grid { get; }
Property Value
Type | Description |
---|---|
SpreadsheetGrid | An instance of SpreadsheetGrid. |
IsCut
Gets the boolean flag for copy/cut operation.
Declaration
public bool IsCut { get; }
Property Value
Type | Description |
---|---|
System.Boolean | If true, cut operation;else copy operation. |
Range
Gets the Copied range.
Declaration
public GridRangeInfo Range { get; }
Property Value
Type | Description |
---|---|
GridRangeInfo | An instance of GridRangeInfo class. |