AcceptAsynclink
Accepts the current edit in the spreadsheet.
Declaration
public abstract Task<bool> AcceptAsync()
Returns
ExecuteAsynclink
Executes a command through the active view's undo/redo stack. Returns true when the command ran, false when it was rejected by read-only mode, an Allow* flag, sheet protection, or a CommandExecuting handler that called PreventDefault().
Declaration
public abstract Task<bool> ExecuteAsync(Spreadsheet.ICommand command)
Parameters
Returns
IsFeatureAllowedlink
Returns true when the given feature is enabled on the host RadzenSpreadsheet. Tools should use this to decide whether they should appear disabled.
Declaration
public abstract bool IsFeatureAllowed(Spreadsheet.SpreadsheetFeature feature)
Parameters
Returns
LoadWorkbookAsynclink
Replaces the displayed workbook, resets the active sheet and cached view, and raises WorkbookChanged. Used by the Open tool so it works in any toolbar.
Declaration
public abstract Task LoadWorkbookAsync(Documents.Spreadsheet.Workbook workbook)
Parameters
Returns
Returns a localized string for the specified key.
Declaration
public abstract string Localize(string key)
Parameters
Returns
Redoes the last undone command.
Declaration
public abstract void Redo()
Undoes the last command.
Declaration
public abstract void Undo()