Collect

Collect class

表示一组方法,旨在从Presentation收集不同类型的模型对象。

public static class Collect

方法

姓名描述
static Shapes(Presentation)收集Shape中的所有实例Presentation.

例子

using (Presentation pres = new Presentation("pres.pptx"))
{
    foreach (Shape shape in Collect.Shapes(pres))
    {
         // ... 更改形状格式或其他属性
    }
}    

也可以看看