Search
CellRange.MoveTo Method (Int32, Int32)
See Also
 






Moves the data from the current range to the range identified by the specified column and row.

Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms

 Syntax

C#  Copy Code

public bool MoveTo (
    int targetColumn,
    int targetRow
)

Visual Basic  Copy Code

Public Function MoveTo( _
    targetColumn As Integer, _
    targetRow As Integer _
) As Boolean

 Parameters

targetColumn

The leftmost column of the target range.

targetRow

The topmost row of the target range.

 Return Value

 Remarks

This method will raise an ArgumentOutOfRangeException exception if the target range is outside of the current worksheet.

 See Also