[]
Inserts a Row into this collection before a specified row.
public Row Insert(Row before)
Public Function Insert(before As Row) As Row
Type | Name | Description |
---|---|---|
Row | before | The table row before which to insert new row. If null, the new row will be added to the end of the last table in the range. |
Inserts a Row into this collection before a specified row.
public Row Insert(string[] texts, Row before)
Public Function Insert(texts As String(), before As Row) As Row
Type | Name | Description |
---|---|---|
string[] | texts | An array of row cell texts. The size of the array determines the number of cells in the row. |
Row | before | The table row before which to insert new row. If null, the new row will be added to the end of the last table in the range. |
Inserts a Row into this collection at the specified location.
public Row Insert(string[] texts, InsertLocation location)
Public Function Insert(texts As String(), location As InsertLocation) As Row
Type | Name | Description |
---|---|---|
string[] | texts | An array of row cell texts. The size of the array determines the number of cells in the row. |
InsertLocation | location | The row insert position in the current range. |