使用单个书签将文本添加到单词中的多个行

时间:2012-12-21 08:03:17

标签: c# openxml

是否可以借助书签和openXML将多行添加到word文档?

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

在当前模板(我们可以更改)中,我们添加了3个书签 TransactionPart,TransactionPart2和TransactionPart3。 树事务部分形成一个单行,具有三个不同的datacontent(ID,Description,Amount)

如果我们只有一个事务行,那么将数据添加到这些书签没有问题,但是当我们应该添加第二行时我们该怎么办?没有更多行的书签。

有这样做的聪明方法吗?

或者我们应该更改worddocument以使行最终在表中?这会以更好的方式解决问题吗?

1 个答案:

答案 0 :(得分:2)

我会把一个书签放在3个coloumn表中称之为“Transactions”。 像这样 tablelayout

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

你可以用这样的代码来实现这个目标

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

你最终得到了这个

final table

我已经在一个非常基本的文档上测试了这段代码并知道它有效。 祝你好运,如果我能进一步澄清,请告诉我。