AddSectionZoomFrame
Contenu
[
Cacher
]AddSectionZoomFrame(float, float, float, float, ISection)
Ajoute un nouvel objet Section Zoom à la fin d’une collection.
public ISectionZoomFrame AddSectionZoomFrame(float x, float y, float width, float height,
ISection section)
Paramètre | Taper | La description |
---|---|---|
x | Single | Coordonnée X d’un nouveau cadre de zoom de sectionSingle. |
y | Single | Coordonnée Y d’un nouveau cadre de zoom de sectionSingle. |
width | Single | Largeur d’un nouveau cadre de zoom de sectionSingle. |
height | Single | Hauteur d’un nouveau cadre de zoom de sectionSingle. |
section | ISection | L’objet de section référencé par le cadre Zoom de sectionISection . |
Return_Value
Objet de zoom de section crééISectionZoomFrame
.
Exceptions
exception | condition |
---|---|
ArgumentException | La section référencée n’appartient pas à la présentation actuelle ou ne contient aucune diapositive. |
Exemples
Cet exemple montre comment ajouter un objet Section Zoom à la fin d’une collection (en supposant qu’il y a au moins deux sections dans la présentation “Presentation.pptx”) :
[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
ISectionZoomFrame zoomFrame = pres.Slides[0].Shapes.AddSectionZoomFrame(150, 20, 50, 50, pres.Sections[1]);
}
Voir également
- interface ISectionZoomFrame
- interface ISection
- interface IShapeCollection
- espace de noms Aspose.Slides
- Assemblée Aspose.Slides
AddSectionZoomFrame(float, float, float, float, ISection, IPPImage)
Ajoute un nouvel objet Section Zoom à la fin d’une collection avec une image prédéfinie.
public ISectionZoomFrame AddSectionZoomFrame(float x, float y, float width, float height,
ISection section, IPPImage image)
Paramètre | Taper | La description |
---|---|---|
x | Single | Coordonnée X d’un nouveau cadre de zoom de sectionSingle. |
y | Single | Coordonnée Y d’un nouveau cadre de zoom de sectionSingle. |
width | Single | Largeur d’un nouveau cadre de zoom de sectionSingle. |
height | Single | Hauteur d’un nouveau cadre de zoom de sectionSingle. |
section | ISection | L’objet de section référencé par le cadre Zoom de sectionISection . |
image | IPPImage | L’image de la diapositive référencéeIPPImage |
Return_Value
Objet de zoom de section crééISectionZoomFrame
.
Exceptions
exception | condition |
---|---|
ArgumentException | La section référencée n’appartient pas à la présentation actuelle ou ne contient aucune diapositive. |
Exemples
Cet exemple montre comment ajouter un objet Section Zoom à la fin d’une collection (en supposant qu’il y a au moins deux sections dans la présentation “Presentation.pptx”) :
[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
IPPImage image = pres.Images.AddImage(Image.FromFile("image.png"));
ISectionZoomFrame zoomFrame = pres.Slides[0].Shapes.AddSectionZoomFrame(150, 20, 50, 50, pres.Sections[1], image);
}
Voir également
- interface ISectionZoomFrame
- interface ISection
- interface IPPImage
- interface IShapeCollection
- espace de noms Aspose.Slides
- Assemblée Aspose.Slides