add_table method

add_table

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

Returns

Created Table object.

def add_table(self, x, y, column_widths, row_heights):
    ...
ParameterTypeDescription
xfloatThe X-coordinate for a left side of shape’s frame.
yfloatThe Y-coordinate for a top side of shape’s frame.
column_widthsList[float]Array of doubles which represents widths of columns in the table.
row_heightsList[float]Array of doubles which represents heights of rows in the table.

See Also