[]
Inserts a Table into this collection at a specified location.
public Table Insert(InsertLocation location)
| Type | Name | Description |
|---|---|---|
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| Table | The inserted Table. |
Inserts a Table into this collection at a specified location.
public Table Insert(Style style, InsertLocation location)
| Type | Name | Description |
|---|---|---|
| Style | style | The table style. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| Table | The inserted Table. |
Inserts a Table into this collection at a specified location.
public Table Insert(int columns, int rows, InsertLocation location)
| Type | Name | Description |
|---|---|---|
| int | columns | The number of columns in the new table. |
| int | rows | The number of rows in the new table. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| Table | The inserted Table. |
Inserts a Table into this collection at a specified location.
public Table Insert(int columns, int rows, Style style, InsertLocation location)
| Type | Name | Description |
|---|---|---|
| int | columns | The number of columns in the new table. |
| int | rows | The number of rows in the new table. |
| Style | style | The table style. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| Table | The inserted Table. |
Inserts a Table into this collection at a specified location.
public Table Insert(string[][] texts, InsertLocation location)
| Type | Name | Description |
|---|---|---|
| string[][] | texts | A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| Table | The inserted Table. |
Inserts a Table into this collection at a specified location.
public Table Insert(string[][] texts, Style style, InsertLocation location)
| Type | Name | Description |
|---|---|---|
| string[][] | texts | A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells. |
| Style | style | The table style. |
| InsertLocation | location | The target InsertLocation for the insertion. |
| Type | Description |
|---|---|
| Table | The inserted Table. |