Creates a new instance of the
ClipboardPasteExtent class.
Syntax
'Declaration
Public Function New( _
ByVal As CellRange, _
ByVal () As CellRange, _
ByVal As System.Boolean, _
ByVal As System.String _
)
'Usage
Dim sourceRange As CellRange
Dim targetRanges() As CellRange
Dim isCutting As System.Boolean
Dim clipboardText As System.String
Dim instance As New ClipboardPasteExtent(sourceRange, targetRanges, isCutting, clipboardText)
public ClipboardPasteExtent(
CellRange ,
CellRange[] ,
System.bool ,
System.string
)
Parameters
- sourceRange
- The source range of the copy or cut.
- targetRanges
- The target ranges to paste.
- isCutting
- if set to
true
the action is a cut; otherwise, copy. - clipboardText
- The Clipboard text.
See Also