GrapeCity.Windows.SpreadSheet.UI.UndoRedo Namespace > RowGroupUndoAction Class : RowGroupUndoAction Constructor |
'Declaration Public Function New( _ ByVal sheet As Worksheet, _ ByVal rowGroupExtent As RowGroupExtent _ )
'Usage Dim sheet As Worksheet Dim rowGroupExtent As RowGroupExtent Dim instance As New RowGroupUndoAction(sheet, rowGroupExtent)
public RowGroupUndoAction( Worksheet sheet, RowGroupExtent rowGroupExtent )
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
Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6