aspose.word仅返回第一个表和节

时间:2013-05-13 13:55:47

标签: c# nuget docx aspose

我有办公室字2013.docx文件,它有很多部分和表格。 我不知道为什么所有像下面这样的集合都返回单项,而我的.docx中有很多这样的集合?

  Document document = new Document(filePath);
  int sectionsCount=document.Sections.Count;
  int firstSectionTablesCount=document.FirstSection.Body.Tables.Count;

由于

1 个答案:

答案 0 :(得分:2)

这是我的错,因为我没有申请执照,我只获得了第一张表格和分区ID文件。

申请许可证:

        Aspose.Words.License license=new License();
        license.SetLicense("Aspose.Words.lic");