AddSectionZoomFrame()
Contents
[
Hide
]ShapeCollection::AddSectionZoomFrame(float, float, float, float, System::SharedPtr<ISection>) method
Adds a new Section Zoom object to the end of a collection.
System::SharedPtr<ISectionZoomFrame> Aspose::Slides::ShapeCollection::AddSectionZoomFrame(float x, float y, float width, float height, System::SharedPtr<ISection> section) override
Arguments
Parameter | Type | Description |
---|---|---|
x | float | X coordinate of a new Section Zoom frame float. |
y | float | Y coordinate of a new Section Zoom frame float. |
width | float | Width of a new Section Zoom frame float. |
height | float | Height of a new Section Zoom frame float. |
section | System::SharedPtr<ISection> | The section object referenced by the Section Zoom frame ISection. |
Return Value
Created Section Zoom object ISectionZoomFrame.
Remarks
This example demonstrates adding a Section Zoom object to the end of a collection (assume that there are at least two sections in the "Presentation.pptx" presentation):
auto pres = System::MakeObject<Presentation>(u"Presentation.pptx");
auto shapes = pres->get_Slides()->idx_get(0)->get_Shapes();
auto zoomFrame = shapes->AddSectionZoomFrame(150.0f, 20.0f, 50.0f, 50.0f, pres->get_Sections()->idx_get(1));
ShapeCollection::AddSectionZoomFrame(float, float, float, float, System::SharedPtr<ISection>, System::SharedPtr<IPPImage>) method
Adds a new Section Zoom object to the end of a collection with a predefined image.
System::SharedPtr<ISectionZoomFrame> Aspose::Slides::ShapeCollection::AddSectionZoomFrame(float x, float y, float width, float height, System::SharedPtr<ISection> section, System::SharedPtr<IPPImage> image) override
Arguments
Parameter | Type | Description |
---|---|---|
x | float | X coordinate of a new Section Zoom frame float. |
y | float | Y coordinate of a new Section Zoom frame float. |
width | float | Width of a new Section Zoom frame float. |
height | float | Height of a new Section Zoom frame float. |
section | System::SharedPtr<ISection> | The section object referenced by the Section Zoom frame ISection. |
image | System::SharedPtr<IPPImage> | The image for the referenced slide IPPImage |
Return Value
Created Section Zoom object ISectionZoomFrame.
Remarks
This example demonstrates adding a Section Zoom object to the end of a collection (assume that there are at least two sections in the "Presentation.pptx" presentation):
auto pres = System::MakeObject<Presentation>(u"Presentation.pptx");
auto shapes = pres->get_Slides()->idx_get(0)->get_Shapes();
auto image = pres->get_Images()->AddImage(Image::FromFile(u"image.png"));
auto zoomFrame = shapes->AddSectionZoomFrame(150.0f, 20.0f, 50.0f, 50.0f, pres->get_Sections()->idx_get(1), image);
See Also
- Typedef SharedPtr
- Class ISectionZoomFrame
- Class ISection
- Class ShapeCollection
- Class IPPImage
- Namespace Aspose::Slides
- Library Aspose.Slides