Spread Silverlight Documentation
DoCommand Method
Example 


GrapeCity.Windows.SpreadSheet.UI Namespace > GcSpreadSheet Class : DoCommand Method
The command.
Executes a command.
Syntax
'Declaration
 
Public Sub DoCommand( _
   ByVal command As System.Windows.Input.ICommand _
) 
'Usage
 
Dim instance As GcSpreadSheet
Dim command As System.Windows.Input.ICommand
 
instance.DoCommand(command)
public void DoCommand( 
   System.Windows.Input.ICommand command
)

Parameters

command
The command.
Example
This example creates an action that can be undone.
gcSpreadSheet1.CanUserUndo = true;

 private void button1_Click(object sender, RoutedEventArgs e)
        {
GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowGroupExtent group = new GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowGroupExtent(3, 5);
GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowGroupUndoAction action = new GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowGroupUndoAction(this.gcSpreadSheet1.ActiveSheet, group);
this.gcSpreadSheet1.DoCommand(action);
gcSpreadSheet1.Invalidate();
        }
GcSpreadSheet1.CanUserUndo = True

Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
        Dim group As New GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowGroupExtent(3, 5)
        Dim action As New GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowGroupUndoAction(GcSpreadSheet1.ActiveSheet, group)
        GcSpreadSheet1.DoCommand(action)
        GcSpreadSheet1.Invalidate()
    End Sub
See Also

Reference

GcSpreadSheet Class
GcSpreadSheet Members