Paragraph
ForEach.Paragraph method
迭代每个Paragraph
在Presentation
中。 形状将在所有类型的幻灯片中迭代 -Slide
,MasterSlide
和LayoutSlide
public static void Paragraph(Presentation pres, ForEachParagraphCallback forEachParagraph)
范围 | 类型 | 描述 |
---|---|---|
pres | Presentation | 表示迭代段落 |
forEachParagraph | ForEachParagraphCallback | 将为每个段落调用的回调 |
例子
using (Presentation pres = new Presentation("pres.pptx"))
{
ForEach.Paragraph(pres, (para, slide, index) =>
{
System.Console.WriteLine($"{para.Text}, index: {index}");
});
}
也可以看看
- class Presentation
- delegate ForEachParagraphCallback
- class ForEach
- 命名空间 Aspose.Slides.LowCode
- 部件 Aspose.Slides