Class SpreadsheetCopyingEventArgs
Represents the class which holds the properties of SpreadsheetCopying event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Spreadsheet.Helpers
Assembly: Syncfusion.SfSpreadsheet.WPF.dll
Syntax
public class SpreadsheetCopyingEventArgs : GridCancelEventArgs
Constructors
SpreadsheetCopyingEventArgs(GridRangeInfo, Boolean, SpreadsheetGrid)
Initializes a new instance of the SpreadsheetCopyingEventArgs class.
Declaration
public SpreadsheetCopyingEventArgs(GridRangeInfo range, bool iscut, SpreadsheetGrid grid)
Parameters
Type | Name | Description |
---|---|---|
GridRangeInfo | range | Copying 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 or sets the boolean flag for copy/cut operation.
Declaration
public bool IsCut { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | If true, cut operation;else copy operation. |
Range
Gets or sets the range to be copied.
Declaration
public GridRangeInfo Range { get; set; }
Property Value
Type | Description |
---|---|
GridRangeInfo | An instance of GridRangeInfo class. |