Shapes
Collect.Shapes method
Recopila todas las instancias deShape
en elPresentation
public static IEnumerable<Shape> Shapes(Presentation pres)
Parámetro | Escribe | Descripción |
---|---|---|
pres | Presentation | Presentació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
- class Shape
- class Presentation
- class Collect
- espacio de nombres Aspose.Slides.LowCode
- asamblea Aspose.Slides