InsertZoomFrame
Inhalt
[
Ausblenden
]InsertZoomFrame(int, float, float, float, float, ISlide)
Erstellt ein neues Zoom-Objekt und fügt es am angegebenen Index in eine Sammlung ein.
public IZoomFrame InsertZoomFrame(int index, float x, float y, float width, float height,
ISlide slide)
Parameter | Typ | Beschreibung |
---|---|---|
index | Int32 | Der nullbasierte Index, an dem Zoomframe eingefügt werden soll. |
x | Single | X-Koordinate eines neuen ZoomrahmensSingle. |
y | Single | Y-Koordinate eines neuen ZoomrahmensSingle. |
width | Single | Breite eines neuen ZoomrahmensSingle. |
height | Single | Höhe eines neuen ZoomrahmensSingle. |
slide | ISlide | Das vom Zoomrahmen referenzierte FolienobjektISlide . |
Rückgabewert
Zoom-Objekt erstelltIZoomFrame
.
Ausnahmen
Ausnahme | Bedingung |
---|---|
ArgumentException | Die referenzierte Folie gehört nicht zur aktuellen Präsentation. |
Beispiele
Dieses Beispiel zeigt das Erstellen und Einfügen eines Zoom-Objekts am angegebenen Index einer Sammlung (vorausgesetzt, es gibt mindestens zwei Folien in der Präsentation „Präsentation.pptx“):
[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
IZoomFrame zoomFrame = pres.Slides[0].Shapes.InsertZoomFrame(2, 150, 20, 50, 50, pres.Slides[1]);
}
Siehe auch
- interface IZoomFrame
- interface ISlide
- interface IShapeCollection
- namensraum Aspose.Slides
- Montage Aspose.Slides
InsertZoomFrame(int, float, float, float, float, ISlide, IPPImage)
Erstellt ein neues Zoom-Objekt und fügt es am angegebenen Index in eine Sammlung ein.
public IZoomFrame InsertZoomFrame(int index, float x, float y, float width, float height,
ISlide slide, IPPImage image)
Parameter | Typ | Beschreibung |
---|---|---|
index | Int32 | Der nullbasierte Index, an dem Zoomframe eingefügt werden soll. |
x | Single | X-Koordinate eines neuen ZoomrahmensSingle. |
y | Single | Y-Koordinate eines neuen ZoomrahmensSingle. |
width | Single | Breite eines neuen ZoomrahmensSingle. |
height | Single | Höhe eines neuen ZoomrahmensSingle. |
slide | ISlide | Das vom Zoomrahmen referenzierte FolienobjektISlide . |
image | IPPImage | Das Bild für die referenzierte FolieIPPImage |
Rückgabewert
Zoom-Objekt erstelltIZoomFrame
.
Ausnahmen
Ausnahme | Bedingung |
---|---|
ArgumentException | Die referenzierte Folie gehört nicht zur aktuellen Präsentation. |
Beispiele
Dieses Beispiel zeigt das Erstellen und Einfügen eines Zoom-Objekts am angegebenen Index einer Sammlung (vorausgesetzt, es gibt mindestens zwei Folien in der Präsentation „Präsentation.pptx“):
[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
IPPImage image = pres.Images.AddImage(Image.FromFile("image.png"));
IZoomFrame zoomFrame = pres.Slides[0].Shapes.InsertZoomFrame(2, 150, 20, 50, 50, pres.Slides[1], image);
}
Siehe auch
- interface IZoomFrame
- interface ISlide
- interface IPPImage
- interface IShapeCollection
- namensraum Aspose.Slides
- Montage Aspose.Slides