aspose.words 获取word编号
时间: 2023-05-24 17:03:25 浏览: 559
Aspose.Words导出到word
A:您可以使用Aspose.Words API来获取Word文档中各个段落的编号。首先,您需要使用Aspose.Words加载Word文档:
```
Document doc = new Document("input.docx");
```
然后,您可以遍历文档中的每个段落,并根据需要获取其编号。以下是示例代码:
```
foreach (Paragraph paragraph in doc.GetChildNodes(NodeType.Paragraph, true))
{
if (paragraph.IsListItem)
{
string label = paragraph.ListLabel.LabelString;
int number = paragraph.ListLabel.ListLabelValue;
Console.WriteLine("Label: {0}, Number: {1}", label, number);
}
}
```
此代码假定文档中存在编号列表。如果未在文档中使用编号,则不会输出任何内容。
阅读全文