AddOnlineImagePlaceholder()

ILayoutPlaceholderManager::AddOnlineImagePlaceholder(float, float, float, float) method

Adds a new placeholder shape to the layout slide to hold an online image.

virtual System::SharedPtr<IAutoShape> Aspose::Slides::ILayoutPlaceholderManager::AddOnlineImagePlaceholder(float x, float y, float width, float height)=0

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 an Online Image placeholder.

Remarks

The following example shows how to add the Online Image 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()->AddOnlineImagePlaceholder(20.0f, 20.0f, 200.0f, 200.0f);

See Also