Class DeleteCellsCommand
Command used to Delete a row/column
Implements
System.Windows.Input.ICommand
  Inherited Members
Namespace: Syncfusion.UI.Xaml.Spreadsheet.Commands
Assembly: Syncfusion.SfSpreadsheet.UWP.dll
Syntax
public class DeleteCellsCommand : DeleteCommand, ICommand
  Constructors
DeleteCellsCommand(SfSpreadsheet, String)
Constructor for DeleteCells
Declaration
public DeleteCellsCommand(SfSpreadsheet spreadsheetControl, string commandName)
  Parameters
| Type | Name | Description | 
|---|---|---|
| SfSpreadsheet | spreadsheetControl | The SfSpreadsheet Control  | 
      
| System.String | commandName | 
Methods
OnCanExecute(Object)
returns true if DeleteCells Command can be executed else false
Declaration
public override bool OnCanExecute(object parameter)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Object | parameter | true or false  | 
      
Returns
| Type | Description | 
|---|---|
| System.Boolean | returns true or false  | 
      
Overrides
OnExecute(Object)
Used to execute the DeleteCells Command
Declaration
protected override void OnExecute(object parameter)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Object | parameter | Pass parameter as DeleteCells if Rows/Columns are to be inserted else pass parameter as DeleteCells to delete entire row/column  | 
      
Overrides
Implements
      System.Windows.Input.ICommand