Shapes
Collect.Shapes method
Sammelt alle Instanzen vonShape
in demPresentation
.
public static IEnumerable<Shape> Shapes(Presentation pres)
Parameter | Typ | Beschreibung |
---|---|---|
pres | Presentation | Prä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
- class Shape
- class Presentation
- class Collect
- namensraum Aspose.Slides.LowCode
- Montage Aspose.Slides