我尝试使用C#循环访问Powerpoint中的各个部分。
首先我要检查属性ActivePresentation.HasSection,但是收到错误。 然后ActivePresentation.SectionCount也显示错误 - 也是ActivePresentation.SectionProperties.Count
我的代码:
if(oPresentation.HasSections == true)
{
for (int iSection = oPresentation.SectionCount; iSection >0; iSection--)
{
oPresentation.SectionProperties.Delete(iSection, false);
}
}
我可以使用C#和
创建部分oPresentation.SectionProperties.AddBeforeSlide(1, false)
我可以使用带有
的c#删除部分oPresentation.SectionProperties.Delete(2, false)
但有人知道如何通过C#循环访问PowerPoint中的各个部分并将其全部删除吗?如何检查演示文稿是否有部分?
在VBA中,这不是问题: https://code.msdn.microsoft.com/office/PowerPoint-2010-Insert-b6f1e012
答案 0 :(得分:0)
对于所有看起来都一样的人,我自己也开始工作了。我认为没有直接访问oPresentation.SectionProperties.Count - 在使用它工作的变量之后。也许有人可以解释一下,我是C#的新手。
percent escape sequence