'Usage Dim sheet As Worksheet Dim newName As String Dim instance As New SheetRenameUndoAction(sheet, newName)
Parameters
- sheet
- The renamed worksheet.
- newName
- The worksheet's new name.
'Usage Dim sheet As Worksheet Dim newName As String Dim instance As New SheetRenameUndoAction(sheet, newName)
var action = new GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.SheetRenameUndoAction(GcSpreadSheet1.Sheets[0], "SheetName"); GcSpreadSheet1.DoCommand(action);
Dim action As New GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.SheetRenameUndoAction(GcSpreadSheet1.Sheets(0), "SheetName") GcSpreadSheet1.DoCommand(action)