[]
Creates a new undo action for a Clipboard cut.
public ClipboardCutUndoAction()
Public Sub New()
Creates a new undo action for a Clipboard cut using the specified copy options.
public ClipboardCutUndoAction(ClipboardCopyOptions copyOptions)
Public Sub New(copyOptions As ClipboardCopyOptions)
Type | Name | Description |
---|---|---|
ClipboardCopyOptions | copyOptions | ClipboardCopyOptions |
Creates a new undo action for a Clipboard cut of the specified range in the specified sheet.
public ClipboardCutUndoAction(SheetView sheetView, int row, int column, int rowCount, int columnCount, ClipboardCopyOptions copyOptions)
Public Sub New(sheetView As SheetView, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, copyOptions As ClipboardCopyOptions)
Type | Name | Description |
---|---|---|
SheetView | sheetView | SheetView |
int | row | Row index |
int | column | Column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |
ClipboardCopyOptions | copyOptions | ClipboardCopyOptions |
Creates a new undo action for a Clipboard cut of the specified range in the specified sheet.
public ClipboardCutUndoAction(SheetView sheetView, int row, int column, int rowCount, int columnCount)
Public Sub New(sheetView As SheetView, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
SheetView | sheetView | SheetView |
int | row | Row index |
int | column | Column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |