Copies rows and pastes them at the specified location.
Syntax
'Declaration
Public Sub CopyRows( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer _
)
'Usage
Dim instance As SheetSpanModel
Dim fromRow As System.Integer
Dim toRow As System.Integer
Dim count As System.Integer
instance.CopyRows(fromRow, toRow, count)
public void CopyRows(
System.int ,
System.int ,
System.int
)
Parameters
- fromRow
- The row index at which to start copying.
- toRow
- The row index at which to paste columns.
- count
- The number of rows to copy.
See Also