'Declaration
Public Overloads Sub CutAndPasteTo( _ ByVal rowId As Integer, _ ByVal columnId As Integer, _ Optional ByVal pasteOptions As PasteOptions, _ Optional ByVal otherWorksheet As Worksheet _ )
'Usage
Dim instance As CellRange Dim rowId As Integer Dim columnId As Integer Dim pasteOptions As PasteOptions Dim otherWorksheet As Worksheet instance.CutAndPasteTo(rowId, columnId, pasteOptions, otherWorksheet)
public void CutAndPasteTo( int rowId, int columnId, PasteOptions pasteOptions, Worksheet otherWorksheet )
Parameters
- rowId
- The RowID that will be used to determine the location where the CellRange will be pasted.
- columnId
- The ColumnID used to determine the location where the CellRange will be pasted.
- pasteOptions
- The PasteOptions; in other words, what type of data will be pasted into the new location.
- otherWorksheet
- The Worksheet in which the data will be pasted; by default, this is set to null, which means that the data will be pasted into the current Worksheet.