ヘッダー付きのテーブルを作成しようとしています。テーブルが取る新しいページごとにこのヘッダーを繰り返したいと思います。C# および OpenXml ワードプロセッシングでこれを行うにはどうすればよいですか?
DocumentFormat.OpenXml.Packaging.WordprocessingDocument internalDoc =
DocumentFormat.OpenXml.Packaging.WordprocessingDocument.Open(stream, true);
var tables = wordDoc.MainDocumentPart.Document.Descendants<SdtBlock>().Where
( r => r.SdtProperties.GetFirstChild<Tag>().Val.Value.StartsWith(DATA_TABLE_TAG));
Table table = tables.Descendants<Table>().Single();
//Here can I set some property to repeat the header of the table?