7

使用 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();
}
4

1 回答 1

15
    [Test]
    public void FindHeadingParagraphs()
    {

        var paragraphs = new List<Paragraph>();

        // Open the file read-only since we don't need to change it.
        using (var wordprocessingDocument = WordprocessingDocument.Open(documentFileName, false))
        {
            paragraphs = wordprocessingDocument.MainDocumentPart.Document.Body
                .OfType<Paragraph>()
                .Where(p => p.ParagraphProperties != null && 
                            p.ParagraphProperties.ParagraphStyleId != null && 
                            p.ParagraphProperties.ParagraphStyleId.Val.Value.Contains("Heading1")).ToList();
        }
    }
于 2012-08-13T20:34:56.533 回答