使用 Word 我创建了一个带有标准 normal.dot 的 Docx 作为测试。Hello-world 级别的复杂性。
我希望得到在 Word 中all the paragraphs
带有“ Heading1
”样式的样式。style
我可以得到所有的段落,但不知道如何过滤到 Heading1。
using (var doc = WordprocessingDocument.Open(documentFileName, false))
{
paragraphs = doc.MainDocumentPart.Document.Body
.OfType<Paragraph>().ToList();
}