繁体   English   中英

使用 OpenXML 向 docx 文件中的表添加多行

[英]Adding multiple rows to a table in docx files with OpenXML

我正在使用 TemplateEngine.Docx,模板引擎在 Visual Studio 中为 C# 生成 Word docx。 基本上,我正在尝试使用 for 循环将多行添加到已编辑的 Word 文档中的表中。 但是,当我遍历 if 语句时,它只会重写刚刚读取的数据。 这是我的代码:

if (fieldName == "examrubric")
            {

                for (; ; )
                {
                    Console.WriteLine("To enter a row to the tabel type 'yes'\n");
                    string choice = Console.ReadLine();

                    if (choice == "yes")
                    {

                        Console.WriteLine("Enter a value for the question number:\n");
                        string qnum = Console.ReadLine();
                        Console.WriteLine("Enter a value for what the question is out of:\n");
                        string score = Console.ReadLine();
                        Console.WriteLine("Enter a value for how much was scored:\n");
                        string qscore = Console.ReadLine();
                        Console.WriteLine("Enter a value for score:\n");
                        string score2 = Console.ReadLine();
                        Console.WriteLine("Enter the total mark:\n");
                        string total = Console.ReadLine();


                        valuesToFill = new Content(
                                       new TableContent("examrubric")
                                       .AddRow(
                                       new FieldContent("qnum", qnum),
                                       new FieldContent("score", score),
                                       new FieldContent("qscore", qscore),
                                       new FieldContent("score2", score2),
                                       new FieldContent("total", total)));
                    }

                    else
                    {
                        break;
                    }
                }
            }

您可以尝试以下代码在循环中将数据写入 docx 文件,以避免重写数据。

static void Main(string[] args)
        {
           
            File.Copy("test1.docx", "OutputDocument.docx");
            Console.WriteLine("To enter a row to the tabel type 'yes'\n");
            string choice = Console.ReadLine();
            Content valuesToFill = new Content(new TableContent("Team Members Table"));
            for (int i = 0; i < 2; i++)
            {
                if (choice == "yes")
                {
                    Console.WriteLine("Enter a value for the Name:\n");
                    string name = Console.ReadLine();
                    Console.WriteLine("Enter a value for the Role:\n");
                    string role = Console.ReadLine();
                    valuesToFill.Tables.First().AddRow(
                            new FieldContent("Name", name),
                            new FieldContent("Role", role)) ;
                    
                   
                }

            }
            using (var outputDocument = new TemplateProcessor("OutputDocument.docx").SetRemoveContentControls(true))
            {
                outputDocument.FillContent(valuesToFill);
                outputDocument.SaveChanges();

            }
        }

测试结果:

在此处输入图像描述

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM