AddContentPlaceholder()
Contents
[
Hide
]LayoutPlaceholderManager::AddContentPlaceholder(float, float, float, float) method
Adds a new placeholder shape to the layout slide to hold content, such as a picture, table, media or text.
System::SharedPtr<IAutoShape> Aspose::Slides::LayoutPlaceholderManager::AddContentPlaceholder(float x, float y, float width, float height) override
Arguments
Parameter | Type | Description |
---|---|---|
x | float | The X coordinate of the new placeholder shape. |
y | float | The Y coordinate of the new placeholder shape. |
width | float | The width of the new placeholder shape. |
height | float | The height of the new placeholder shape. |
Return Value
Created IAutoShape with a Content placeholder.
Remarks
The following example shows how to add the Content 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()->AddContentPlaceholder(20.0f, 20.0f, 500.0f, 300.0f);
See Also
- Typedef SharedPtr
- Class IAutoShape
- Class LayoutPlaceholderManager
- Namespace Aspose::Slides
- Library Aspose.Slides