'Usage Dim index As Integer Dim count As Integer Dim instance As New ColumnGroupExtent(index, count)
Parameters
- index
- The group starting index.
- count
- The number of columns to group.
'Usage Dim index As Integer Dim count As Integer Dim instance As New ColumnGroupExtent(index, count)
GcSpreadSheet1.CanUserUndo = true; var group = new GrapeCity.Windows.SpreadSheet.UI.UndoRedo.ColumnGroupExtent(3,5); var action = new GrapeCity.Windows.SpreadSheet.UI.UndoRedo.ColumnGroupUndoAction(GcSpreadSheet1.Sheets[0],group); GcSpreadSheet1.DoCommand(action);
GcSpreadSheet1.CanUserUndo = True Dim group As New GrapeCity.Windows.SpreadSheet.UI.UndoRedo.ColumnGroupExtent(3,5) Dim action As New GrapeCity.Windows.SpreadSheet.UI.UndoRedo.ColumnGroupUndoAction(GcSpreadSheet1.Sheets(0),group) GcSpreadSheet1.DoCommand(action)