Spread WPF 18
GrapeCity.Spreadsheet Namespace / IRange Interface / Move Method / Move(Int32,Int32,ManipulationOptions) Method
Row index of starting position of destination
Column index of starting position of destination
The options indicates which data type will be performed.


In This Topic
    Move(Int32,Int32,ManipulationOptions) Method
    In This Topic
    Moves the data from a range of cells to the specified location.
    Syntax
    'Declaration
     
    Overloads Function Move( _
       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.Move(toRow, toColumn, options)
    bool Move( 
       int toRow,
       int toColumn,
       ManipulationOptions options
    )

    Parameters

    toRow
    Row index of starting position of destination
    toColumn
    Column index of starting position of destination
    options
    The options indicates which data type will be performed.

    Return Value

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