Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IRange Interface / Copy Method / Copy(Int32,Int32,ManipulationOptions) Method
Row index of start of range to which to copy
Column index of start of range to which to copy
The options indicates which data type will be performed.


In This Topic
    Copy(Int32,Int32,ManipulationOptions) Method
    In This Topic
    Copies the data from a range of cells to a specified range of cells.
    Syntax
    'Declaration
     
    
    Overloads Function Copy( _
       ByVal toRow As Integer, _
       ByVal toColumn As Integer, _
       Optional ByVal options As ManipulationOptions _
    ) As Boolean
    'Usage
     
    
    Dim instance As IRange
    Dim toRow As Integer
    Dim toColumn As Integer
    Dim options As ManipulationOptions
    Dim value As Boolean
     
    value = instance.Copy(toRow, toColumn, options)

    Parameters

    toRow
    Row index of start of range to which to copy
    toColumn
    Column index of start of range to which to copy
    options
    The options indicates which data type will be performed.

    Return Value

    true if the cell range is copied successful, false otherwise.
    See Also