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