InsertTable()

ShapeCollection::InsertTable(int32_t, float, float, System::ArrayPtr<double>, System::ArrayPtr<double>) method

Creates a new table and inserts it into the shape collection at the specified index.

System::SharedPtr<ITable> Aspose::Slides::ShapeCollection::InsertTable(int32_t index, float x, float y, System::ArrayPtr<double> columnWidths, System::ArrayPtr<double> rowHeights) override

Arguments

ParameterTypeDescription
indexint32_tThe zero-based index at which to insert the table.
xfloatThe x-coordinate of the table, in points.
yfloatThe y-coordinate of the table, in points.
columnWidthsSystem::ArrayPtr<double>An array of doubles representing the widths of the table\u2019s columns, in points.
rowHeightsSystem::ArrayPtr<double>An array of doubles representing the heights of the table\u2019s rows, in points.

Return Value

The newly created ITable.

See Also