AddSectionZoomFrame

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ètreTaperLa description
xSingleCoordonnée X d’un nouveau cadre de zoom de sectionSingle.
ySingleCoordonnée Y d’un nouveau cadre de zoom de sectionSingle.
widthSingleLargeur d’un nouveau cadre de zoom de sectionSingle.
heightSingleHauteur d’un nouveau cadre de zoom de sectionSingle.
sectionISectionL’objet de section référencé par le cadre Zoom de sectionISection.

Return_Value

Objet de zoom de section crééISectionZoomFrame.

Exceptions

exceptioncondition
ArgumentExceptionLa 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


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ètreTaperLa description
xSingleCoordonnée X d’un nouveau cadre de zoom de sectionSingle.
ySingleCoordonnée Y d’un nouveau cadre de zoom de sectionSingle.
widthSingleLargeur d’un nouveau cadre de zoom de sectionSingle.
heightSingleHauteur d’un nouveau cadre de zoom de sectionSingle.
sectionISectionL’objet de section référencé par le cadre Zoom de sectionISection.
imageIPPImageL’image de la diapositive référencéeIPPImage

Return_Value

Objet de zoom de section crééISectionZoomFrame.

Exceptions

exceptioncondition
ArgumentExceptionLa 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