Class BeforeCutCopyActionEventArgs
Provides information about the BeforeCutCopyAction event.
Inheritance
System.Object
BeforeCutCopyActionEventArgs
Namespace: Syncfusion.Blazor.Spreadsheet
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeCutCopyActionEventArgs : Object
Constructors
BeforeCutCopyActionEventArgs()
Declaration
public BeforeCutCopyActionEventArgs()
Properties
Action
Gets the current action indicating whether it is a copy, or cut operation.
Declaration
public string Action { get; }
Property Value
Type | Description |
---|---|
System.String | A string that specifies the action, which can be "Copy" or "Cut". |
Cancel
Gets or sets a value indicating whether the copy or cut operation should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean value that determines if the operation should be canceled. The default value is |
CopiedRange
Gets or sets the range of cells, including the sheet name, that are being copied or cut.
Declaration
public string CopiedRange { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the range of cells involved in the copy or cut operation, including the sheet name. |