Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IWorksheet Interface / Paste Method / Paste(IRange,Boolean) Method
An IRange object that specifies where the Clipboard contents should be pasted. If this argument is omitted, the current selection is used.
true to establish a link to the source of the pasted data.


In This Topic
    Paste(IRange,Boolean) Method
    In This Topic
    Pastes the contents of the Clipboard onto the sheet.
    Syntax
    'Declaration
     
    
    Overloads Sub Paste( _
       Optional ByVal destination As IRange, _
       Optional ByVal link As Boolean _
    ) 
    'Usage
     
    
    Dim instance As IWorksheet
    Dim destination As IRange
    Dim link As Boolean
     
    instance.Paste(destination, link)
    void Paste( 
       IRange destination,
       bool link
    )

    Parameters

    destination
    An IRange object that specifies where the Clipboard contents should be pasted. If this argument is omitted, the current selection is used.
    link
    true to establish a link to the source of the pasted data.
    See Also