Shapes

Collect.Shapes method

Sammelt alle Instanzen vonShape in demPresentation .

public static IEnumerable<Shape> Shapes(Presentation pres)
ParameterTypBeschreibung
presPresentationPräsentation zum Sammeln von Formen

Rückgabewert

Sammlung aller Shapes, die in der Präsentation enthalten sind

Beispiele

using (Presentation pres = new Presentation("pres.pptx"))
{
    foreach (Shape shape in Collect.Shapes(pres))
    {
        // Wenn die Form AutoShape ist, füge einen schwarzen durchgehenden Rahmen hinzu
        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);
}        

Siehe auch