Shapes

Collect.Shapes method

Recopila todas las instancias deShape en elPresentation

public static IEnumerable<Shape> Shapes(Presentation pres)
ParámetroEscribeDescripción
presPresentationPresentación para coleccionar formas.

Valor_devuelto

Colección de todas las formas que contienen en la presentación.

Ejemplos

using (Presentation pres = new Presentation("pres.pptx"))
{
    foreach (Shape shape in Collect.Shapes(pres))
    {
        // si la forma es AutoForma, agregue un borde sólido negro
        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);
}        

Ver también