InsertSectionZoomFrame
Contents
[
Hide
]InsertSectionZoomFrame(int, float, float, float, float, ISection)
Creates a new Section Zoom object and inserts into to a collection at the specified index.
public ISectionZoomFrame InsertSectionZoomFrame(int index, float x, float y, float width,
float height, ISection section)
Parameter | Type | Description |
---|---|---|
index | Int32 | The zero-based index at which Section Zoom frame should be inserted. |
x | Single | X coordinate of a new Section Zoom frame Single. |
y | Single | Y coordinate of a new Section Zoom frame Single. |
width | Single | Width of a new Section Zoom frame Single. |
height | Single | Height of a new Section Zoom frame Single. |
section | ISection | The slide object referenced by the Section Zoom frame ISection . |
Return Value
Created Section Zoom object ISectionZoomFrame
.
Exceptions
exception | condition |
---|---|
ArgumentException | Referenced section does not belong to the current presentation or does not contains any slides. |
Examples
This example demonstrates the creation and inserting a Section Zoom object at the specified index of a collection (assume that there are at least two sections in the “Presentation.pptx” presentation):
[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
ISectionZoomFrame zoomFrame = pres.Slides[0].Shapes.InsertSectionZoomFrame(2, 150, 20, 50, 50, pres.Sections[1]);
}
See Also
- interface ISectionZoomFrame
- interface ISection
- interface IShapeCollection
- namespace Aspose.Slides
- assembly Aspose.Slides
InsertSectionZoomFrame(int, float, float, float, float, ISection, IPPImage)
Creates a new Section Zoom object and inserts it to a collection at the specified index.
public ISectionZoomFrame InsertSectionZoomFrame(int index, float x, float y, float width,
float height, ISection section, IPPImage image)
Parameter | Type | Description |
---|---|---|
index | Int32 | The zero-based index at which Section Zoom frame should be inserted. |
x | Single | X coordinate of a new Section Zoom frame Single. |
y | Single | Y coordinate of a new Section Zoom frame Single. |
width | Single | Width of a new Section Zoom frame Single. |
height | Single | Height of a new Section Zoom frame Single. |
section | ISection | The slide object referenced by the Section Zoom frame ISection . |
image | IPPImage | The image for the referenced slide IPPImage |
Return Value
Created Section Zoom object ISectionZoomFrame
.
Exceptions
exception | condition |
---|---|
ArgumentException | Referenced section does not belong to the current presentation or does not contains any slides. |
Examples
This example demonstrates the creation and inserting a Section Zoom object at the specified index of a collection (assume that there are at least two sections in the “Presentation.pptx” presentation):
[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
IPPImage image = pres.Images.AddImage(Image.FromFile("image.png"));
ISectionZoomFrame zoomFrame = pres.Slides[0].Shapes.InsertSectionZoomFrame(2, 150, 20, 50, 50, pres.Sections[1], image);
}
See Also
- interface ISectionZoomFrame
- interface ISection
- interface IPPImage
- interface IShapeCollection
- namespace Aspose.Slides
- assembly Aspose.Slides