Collect

Collect class

Stellt eine Gruppe von Methoden dar, die zum Sammeln von Modellobjekten verschiedener Typen bestimmt sindPresentation .

public static class Collect

Methoden

NameBeschreibung
static Shapes(Presentation)Sammelt alle Instanzen vonShape in demPresentation .

Beispiele

using (Presentation pres = new Presentation("pres.pptx"))
{
    foreach (Shape shape in Collect.Shapes(pres))
    {
        // ... Formformatierung oder andere Eigenschaften ändern
    }
}    

Siehe auch