Uses of Interface
com.vaadin.flow.component.spreadsheet.command.Command
-
Packages that use Command Package Description com.vaadin.flow.component.spreadsheet com.vaadin.flow.component.spreadsheet.command -
-
Uses of Command in com.vaadin.flow.component.spreadsheet
Fields in com.vaadin.flow.component.spreadsheet with type parameters of type Command Modifier and Type Field Description protected LinkedList<Command>
SpreadsheetHistoryManager. commands
All executed command in chronological orderMethods in com.vaadin.flow.component.spreadsheet that return Command Modifier and Type Method Description Command
SpreadsheetHistoryManager. getCommand(int historyIndex)
Gets the Command at the given history index.Methods in com.vaadin.flow.component.spreadsheet with parameters of type Command Modifier and Type Method Description void
SpreadsheetHistoryManager. addCommand(Command command)
Adds a command to the end of the command history.protected void
SpreadsheetHistoryManager. changeSelection(Command command)
Applies the cell selection from the given Command.protected void
SpreadsheetHistoryManager. makeSureCorrectSheetActive(Command command)
Ensures that the correct sheet is active, as recorded in the given Command. -
Uses of Command in com.vaadin.flow.component.spreadsheet.command
Subinterfaces of Command in com.vaadin.flow.component.spreadsheet.command Modifier and Type Interface Description interface
ValueChangeCommand
Common interface for all Spreadsheet commands that change cell values.Classes in com.vaadin.flow.component.spreadsheet.command that implement Command Modifier and Type Class Description class
CellShiftValuesCommand
Command for shifting the value(s) of one or more cells.class
CellValueCommand
Command for changing the value of one or more cells.class
RowInsertOrDeleteCommand
Command to insert or delete a rowclass
SizeChangeCommand
Command for changing the height of row(s) or the width of column(s).class
SpreadsheetCommand
Abstract base class for Spreadsheet commands.
-