3

是否可以借助 Bookmarks 和 openXML 在 word 文档中添加几行?

我们有一个用作报告模板的 worddocument。在该模板中,我们需要添加几个交易行。问题是行数不是静态的。例如,它可以是 0、1 或 42。

在当前模板(我们可以更改)中,我们添加了 3 个书签 TransactionPart、TransactionPart2 和 TransactionPart3。树事务部分形成具有三个不同数据内容(ID、描述、金额)的单行

如果我们只有一个交易行,我们可以毫无问题地将数据添加到这些书签中,但是当我们应该添加第二行时我们该怎么办?没有更多行的书签。

有这样做的聪明方法吗?

或者我们应该更改 worddocument 以使行最终出现在表格中?这会更好地解决问题吗?

4

1 回答 1

3

我会在一个 3 列的表中放置一个书签,将其称为“事务”。像这样 表格布局

当您知道表格的设计但不知道您需要的行数时,最简单的方法是为您拥有的每一行数据添加一行。

你可以用这样的代码来完成

//make some data.
            List<String[]> data = new List<string[]>();

            for (int i = 0; i < 10; i++)
                data.Add(new String[] {"this","is","sparta" });
    using (WordprocessingDocument wordDoc = WordprocessingDocument.Open("yourDocument.docx", true))
                {
                    var mainPart = wordDoc.MainDocumentPart;
                    var bookmarks = mainPart.Document.Body.Descendants<BookmarkStart>();
                    var bookmark = 
                        from n in bookmarks 
                        where n.Name == "transactions" 
                        select n;

                    OpenXmlElement elem = bookmark.First().Parent;
                    //isolate tabel
                    while (!(elem is DocumentFormat.OpenXml.Wordprocessing.Table))
                        elem = elem.Parent;
                    var table = elem; //found
                    //save the row you wanna copy in each time you have data.
                    var oldRow = elem.Elements<TableRow>().Last();
                    DocumentFormat.OpenXml.Wordprocessing.TableRow row = (TableRow)oldRow.Clone();
                    //remove old row
                    elem.RemoveChild<TableRow>(oldRow);
                    foreach (String[] s in data)
                    {
                        DocumentFormat.OpenXml.Wordprocessing.TableRow newrow = (TableRow)row.Clone();
                        var cells = newrow.Elements<DocumentFormat.OpenXml.Wordprocessing.TableCell>();
                        //we know we have 3 cells
                        for(int i = 0; i < cells.Count(); i++)
                        {
                            var c = cells.ElementAt(i);
                            var run = c.Elements<Paragraph>().First().Elements<Run>().First();
                            var text = run.Elements<Text>().First();
                            text.Text = s[i];
                        }
                        table.AppendChild(newrow);
                    }
                }

你最终得到这个

决赛桌

我已经在一个非常基本的文档上测试了这段代码,并且知道它可以工作。祝你好运,让我知道我是否可以进一步澄清。

于 2013-04-03T08:08:26.273 回答