In This Topic
Adds a new row or range of rows.
Syntax
'Declaration
Public Sub Add( _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As Rows
Dim index As Integer
Dim count As Integer
instance.Add(index, count)
public void Add(
int ,
int
)
Parameters
- index
- Row index at which to start
- count
- Number of rows to add
Example
This example adds three rows on a postback.
See Also