Event arguments passed to RadzenSpreadsheet's Change callback after the workbook has been mutated.
Object
EventArgs
EventArgs.Empty
Namespace: Radzen.Blazor.Spreadsheet
Assembly: Radzen.Blazor.dll
public class SpreadsheetChangeEventArgs : EventArgsInitializes a new instance of SpreadsheetChangeEventArgs.
public SpreadsheetChangeEventArgs(Spreadsheet.SpreadsheetChangeReason reason, Documents.Spreadsheet.Worksheet worksheet, Spreadsheet.ICommand command)
| Type | Name | Description |
|---|---|---|
| Spreadsheet.SpreadsheetChangeReason | reason | |
| Documents.Spreadsheet.Worksheet | worksheet | |
| Spreadsheet.ICommand | command |
The command that ran, was undone, or was redone. null for sheet management changes, which do not go through the undo stack.
public Spreadsheet.ICommand Command { get; }
| Type | Description |
|---|---|
| Spreadsheet.ICommand | The command that ran, was undone, or was redone. null for sheet management changes, which do not go through the undo stack. |
What caused the change.
public Spreadsheet.SpreadsheetChangeReason Reason { get; }
| Type | Description |
|---|---|
| Spreadsheet.SpreadsheetChangeReason | What caused the change. |
The worksheet the change applies to.
public Documents.Spreadsheet.Worksheet Worksheet { get; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.Worksheet | The worksheet the change applies to. |