RemoveRows Method (SheetView)
In This Topic
Removes the rows at the specified index.
Syntax
'Declaration
Public Sub RemoveRows( _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As SheetView
Dim row As Integer
Dim count As Integer
instance.RemoveRows(row, count)
public void RemoveRows(
int ,
int
)
Parameters
- row
- First row to be removed
- count
- Number of rows to be removed
Example
This example removes two rows.
See Also