Shapes

Collect.Shapes method

Collecte toutes les instances deShape dans lePresentation .

public static IEnumerable<Shape> Shapes(Presentation pres)
ParamètreTaperLa description
presPresentationPrésentation pour collecter des formes

Return_Value

Collection de toutes les formes contenues dans la présentation

Exemples

using (Presentation pres = new Presentation("pres.pptx"))
{
    foreach (Shape shape in Collect.Shapes(pres))
    {
        // si la forme est une forme automatique, ajoute une bordure noire pleine
        if (shape is AutoShape autoShape)
        {
            autoShape.LineFormat.Style = LineStyle.Single;
            autoShape.LineFormat.Width = 10f;
            autoShape.LineFormat.FillFormat.FillType = FillType.Solid;
            autoShape.LineFormat.FillFormat.SolidFillColor.Color = Color.Black;
        }
    }
    
    pres.Save("pres-out.pptx", SaveFormat.Pptx);
}        

Voir également