AddTablePlaceholder()

LayoutPlaceholderManager::AddTablePlaceholder(float, float, float, float) method

Adds a new placeholder shape to the layout slide to hold a table.

System::SharedPtr<IAutoShape> Aspose::Slides::LayoutPlaceholderManager::AddTablePlaceholder(float x, float y, float width, float height) override

Arguments

ParameterTypeDescription
xfloatThe X coordinate of the new placeholder shape.
yfloatThe Y coordinate of the new placeholder shape.
widthfloatThe width of the new placeholder shape.
heightfloatThe height of the new placeholder shape.

Return Value

Created IAutoShape with a Table placeholder.

Remarks

The following example shows how to add the Table placeholder shape to the layout slide.

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>();

System::SharedPtr<ILayoutSlide> layout = pres->get_LayoutSlides()->GetByType(SlideLayoutType::Blank);
System::SharedPtr<IAutoShape> placeholder = layout->get_PlaceholderManager()->AddTablePlaceholder(20.0f, 20.0f, 500.0f, 200.0f);

See Also