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