Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Commands Namespace / ClipboardPasteCommand Class / PasteSpecial Method
The worksheet to paste.
The part of the range to be pasted.
The paste operation.
true to have blank cells in the range on the clipboard not be pasted into the destination range.
true to transpose rows and columns when the range is pasted.


In This Topic
    PasteSpecial Method (ClipboardPasteCommand)
    In This Topic
    Creates a command that paste copying range to the current selection of the specified worksheet.
    Syntax
    'Declaration
     
    
    Public Shared Function PasteSpecial( _
       ByVal target As IWorksheet, _
       ByVal paste As PasteType, _
       ByVal operation As PasteSpecialOperation, _
       Optional ByVal skipBlanks As Boolean, _
       Optional ByVal transpose As Boolean _
    ) As ClipboardPasteCommand
    'Usage
     
    
    Dim target As IWorksheet
    Dim paste As PasteType
    Dim operation As PasteSpecialOperation
    Dim skipBlanks As Boolean
    Dim transpose As Boolean
    Dim value As ClipboardPasteCommand
     
    value = ClipboardPasteCommand.PasteSpecial(target, paste, operation, skipBlanks, transpose)

    Parameters

    target
    The worksheet to paste.
    paste
    The part of the range to be pasted.
    operation
    The paste operation.
    skipBlanks
    true to have blank cells in the range on the clipboard not be pasted into the destination range.
    transpose
    true to transpose rows and columns when the range is pasted.
    See Also