[]
Creates a new XLRow object and inserts it at a specific position in the collection.
public XLRow Insert(int index)
Public Function Insert(index As Integer) As XLRow
| Type | Name | Description |
|---|---|---|
| int | index | Position where the new item will be inserted. |
| Type | Description |
|---|---|
| XLRow | A reference to the new item. |
Inserts an XLRow object at a specific position in the collection.
public XLRow Insert(int index, XLRow row)
Public Function Insert(index As Integer, row As XLRow) As XLRow
| Type | Name | Description |
|---|---|---|
| int | index | Position where the item will be inserted. |
| XLRow | row | Item that will be inserted. |
| Type | Description |
|---|---|
| XLRow | A reference to the item that was added to the collection. |