AddTable

IShapeCollection.AddTable method

Creates a new table and adds it to the end of the shape collection.

public ITable AddTable(float x, float y, double[] columnWidths, double[] rowHeights)
ParameterTypeDescription
xSingleThe x-coordinate of the table, in points.
ySingleThe y-coordinate of the table, in points.
columnWidthsDouble[]An array of doubles representing the widths of the table’s columns, in points.
rowHeightsDouble[]An array of doubles representing the heights of the table’s rows, in points.

Return Value

The newly created ITable.

See Also