AddRows Method (SheetView)
In This Topic
Adds a row or rows to the data model for a sheet.
Syntax
'Declaration
Public Overridable Sub AddRows( _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As SheetView
Dim row As Integer
Dim count As Integer
instance.AddRows(row, count)
public virtual void AddRows(
int ,
int
)
Parameters
- row
- Row index where the new rows are to be added
- count
- Number of rows to be added
See Also