[]
Represents a collection of Table objects.
public class TableCollection : ContentObjectCollection<Table>, IContentList<Table>, IReadOnlyList<Table>, IReadOnlyCollection<Table>, IEnumerable<Table>, IEnumerable
public Table Add()
public Table Add(Style style)
style StyleThe table style.
public Table Add(int columns, int rows)
public Table Add(int columns, int rows, Style style)
columns intThe number of columns in the new table.
rows intThe number of rows in the new table.
style StyleThe table style.
public Table Add(string[][] texts, Style style = null)
texts string[][]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 StyleThe table style.
Inserts a Table into this collection at a specified location.
public Table Insert(InsertLocation location)
location InsertLocationThe target InsertLocation for the insertion.
Inserts a Table into this collection at a specified location.
public Table Insert(Style style, InsertLocation location)
style StyleThe table style.
location InsertLocationThe target InsertLocation for the insertion.
Inserts a Table into this collection at a specified location.
public Table Insert(int columns, int rows, InsertLocation location)
columns intThe number of columns in the new table.
rows intThe number of rows in the new table.
location InsertLocationThe target InsertLocation for the insertion.
Inserts a Table into this collection at a specified location.
public Table Insert(int columns, int rows, Style style, InsertLocation location)
columns intThe number of columns in the new table.
rows intThe number of rows in the new table.
style StyleThe table style.
location InsertLocationThe target InsertLocation for the insertion.
Inserts a Table into this collection at a specified location.
public Table Insert(string[][] texts, InsertLocation location)
texts string[][]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.
location InsertLocationThe target InsertLocation for the insertion.
Inserts a Table into this collection at a specified location.
public Table Insert(string[][] texts, Style style, InsertLocation location)
texts string[][]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 StyleThe table style.
location InsertLocationThe target InsertLocation for the insertion.