'Declaration
Public Sub CopyAndPasteTo( _ ByVal to As Cell, _ Optional ByVal pasteOptions As PasteOptions, _ Optional ByVal copyOptions As CopyOptions _ )
'Usage
Dim instance As Cell Dim to As Cell Dim pasteOptions As PasteOptions Dim copyOptions As CopyOptions instance.CopyAndPasteTo(to, pasteOptions, copyOptions)
public void CopyAndPasteTo( Cell to, PasteOptions pasteOptions, CopyOptions copyOptions )
Parameters
- to
- Where the data will be pasted; this can be either an Address (ie. "D14") or a RowID followed by a ColumnID (ie. 4, 5).
- pasteOptions
- The PasteOptions; in other words, this determines what will be pasted into the new Cell.
- copyOptions
- The CopyOptions; in other words, this determines if the Cell will be copied or cut.