GrapeCity.Xaml.SpreadSheet.UI
CanUserUndo Property (GcSpreadSheet)
Example 


GrapeCity.Xaml.SpreadSheet.UI Namespace > GcSpreadSheet Class : CanUserUndo Property
Gets or sets whether to allow the user to undo edit operations.
Syntax
'Declaration
 
<DefaultValueAttribute()>
<CategoryAttribute()>
Public Property CanUserUndo As Boolean
'Usage
 
Dim instance As GcSpreadSheet
Dim value As Boolean
 
instance.CanUserUndo = value
 
value = instance.CanUserUndo
[DefaultValue()]
[Category()]
public bool CanUserUndo {get; set;}
Example
This example uses the CanUserUndo property.
private void Grid_Loaded_1(object sender, RoutedEventArgs e)
{
gcSpreadSheet1.CanUserUndo = true;
}

private void Button_Click_1(object sender, RoutedEventArgs e)
{
GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowGroupExtent group = new GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowGroupExtent(3, 5);
GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowGroupUndoAction action = new GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowGroupUndoAction(this.gcSpreadSheet1.ActiveSheet, group);
this.gcSpreadSheet1.DoCommand(action);
}
Private Sub MainPage_Loaded(sender As Object, e As RoutedEventArgs) Handles Me.Loaded        
gcSpreadSheet1.CanUserUndo = True     
End Sub

Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
Dim group As New GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowGroupExtent(3, 5)
Dim action As New GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowGroupUndoAction(gcSpreadSheet1.ActiveSheet, group)
gcSpreadSheet1.DoCommand(action)
End Sub
See Also

Reference

GcSpreadSheet Class
GcSpreadSheet Members