[]
Determines the action to perform on the table.
public enum Table.Action
Use this when you call the CanExecute(Action) method or the Execute(Action) method to specify what dialog type to show.
Name | Description |
---|---|
DeleteColumns | Deletes the selected table columns. |
DeleteRows | Deletes the selected table rows. |
DeleteTable | Deletes the selected table. |
InsertColumnAfter | Inserts a column after the selected column. |
InsertColumnBefore | Inserts a column before the selected column. |
InsertRowAbove | Inserts a row above the selected row. |
InsertRowBelow | Inserts a row below the selected row. |
MergeCells | Merges the selected cells. |
SelectCell | Selects all text in the cell. |
SelectColumn | Selects all cell in the table column. |
SelectRow | Selects all cells in the table row. |
SelectTable | Selects all cells in the table. |
SplitCells | Splits the selected cell. |