[]
Adds a row to the end of the collection.
public int Add(int row)
Public Function Add(row As Integer) As Integer
| Type | Name | Description |
|---|---|---|
| int | row | Row number to add. |
| Type | Description |
|---|---|
| int | The index at which the row has been added. |
Adds a range of rows to the end of the collection.
public void Add(int[] rows)
Public Sub Add(rows As Integer())
| Type | Name | Description |
|---|---|---|
| int[] | rows | The range of rows' numbers to add. |