OpenXml合并Table单元格代码实例

using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;
using OpenXML.Model;
using System;
using System.Collections.Generic;

namespace OpenXML
{
  class Program
  {
    //表格数据
    public static List<List<string>> _tabData;

    public Program(List<List<string>> tabData) {
      _tabData = tabData;
    }

    static void Main(string[] args)
    {
      List<string> dataTitle = new List<string>() { "序号","姓名","性别"};
      List<string> data1 = new List<string>() { "1", "张三", "男" };
      List<string> data2 = new List<string>() { "2", "王五", "男" };
      List<string> data3 = new List<string>() { "3", "李四", "女" };

      _tabData = new List<List<string>>();
      _tabData.Add(dataTitle);
      _tabData.Add(data1);
      _tabData.Add(data2);
      _tabData.Add(data3);
      CreateTable(_tabData, @"C:\Users\dzw159\Desktop\WT\VS\OpenXMLFile\openXMLTest.docx",300);

      //CreateOpenXMLFile(@"C:\Users\dzw159\Desktop\WT\VS\OpenXMLFile\openXMLTest.docx");
      Console.WriteLine("Hello World!");
      Console.Read();
    }

    /// <summary>
    /// 创建Word
    /// </summary>
    /// <param name="filePath"></param>
    public static void CreateOpenXMLFile(string filePath)
    {
      using (WordprocessingDocument objWordDocument = WordprocessingDocument.Create(filePath, WordprocessingDocumentType.Document))
      {
        MainDocumentPart objMainDocumentPart = objWordDocument.AddMainDocumentPart();
        objMainDocumentPart.Document = new Document(new Body());
        Body objBody = objMainDocumentPart.Document.Body;
        //创建一些需要用到的样式,如标题3,标题4,在OpenXml里面,这些样式都要自己来创建的
        //ReportExport.CreateParagraphStyle(objWordDocument);
        SectionProperties sectionProperties = new SectionProperties();
        PageSize pageSize = new PageSize();
        PageMargin pageMargin = new PageMargin();
        Columns columns = new Columns() { Space = "220" };//720
        DocGrid docGrid = new DocGrid() { LinePitch = 100 };//360
                                  //创建页面的大小,页距,页面方向一些基本的设置,如A4,B4,Letter,
                                  //GetPageSetting(PageSize,PageMargin); 

        //在这里填充各个Paragraph,与Table,页面上第一级元素就是段落,表格.
        objBody.Append(new Paragraph());
        objBody.Append(new Table());
        objBody.Append(new Paragraph());

        //我会告诉你这里的顺序很重要吗?下面才是把上面那些设置放到Word里去.(大家可以试试把这下面的代码放上面,会不会出现打开openxml文件有误,因为内容有误)
        sectionProperties.Append(pageSize, pageMargin, columns, docGrid);
        objBody.Append(sectionProperties);

        //如果有页眉,在这里添加页眉.
        //if (IsAddHead)
        //{
          //添加页面,如果有图片,这个图片和上面添加在objBody方式有点不一样,这里搞了好久.
          //ReportExport.AddHeader(objMainDocumentPart, image);
        //}
        objMainDocumentPart.Document.Save();
      }
    }

    /// <summary>
    /// 创建Tab
    /// </summary>
    /// <param name="tabData"></param>
    /// <param name="filePath"></param>
    /// <param name="width"></param>
    public static void CreateTable(List<List<string>> tabData, string filePath,int width)
    {
      //打开Word文件
      using (WordprocessingDocument d = WordprocessingDocument.Open(filePath,true))
      {
        //声明表格
        Table tab = new Table();
        //表格样式
        TableProperties tblProp = new TableProperties(new TableBorders(
          new TableBorders(
            new TopBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single),Size = 4},
             new BottomBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 4 },
            new LeftBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 4 },
            new RightBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 4 },
            new InsideHorizontalBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 4 },
            new InsideVerticalBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 4 }
          )
        ));

        //设置表格宽度
        tblProp.TableWidth = new TableWidth() { Width = width.ToString(), Type = TableWidthUnitValues.Dxa };
        //样式添加
        tab.Append(tblProp);

        int j = 0;
        //循环生成单元格
        foreach (var item in tabData)
        {
          //声明Tab行
          TableRow row = new TableRow();
          for (var i = 0; i < item.Count; i++)
          {
            //申明单元格
            TableCell cell = new TableCell();

            TableCellProperties tableCellProperties = new TableCellProperties();
            //单元格样式设置
            TableCellMargin margin = new TableCellMargin();
            margin.LeftMargin = new LeftMargin() {
              Width="100",
              Type = TableWidthUnitValues.Dxa
            };
            margin.RightMargin = new RightMargin()
            {
              Width = "100",
              Type = TableWidthUnitValues.Dxa
            };
            tableCellProperties.Append(margin);

            Paragraph par = new Paragraph();
            Run run = new Run();

            //如果同一列的参数相同(合并单元格)
            if (j < (tabData.Count - 1) && item[i] == tabData[j + 1][i])
            {
              VerticalMerge verticalMerge = new VerticalMerge() {
                Val = MergedCellValues.Restart
              };
              //RunProperties rpr = new RunProperties();
              //rpr.Append(new Bold());
              //run.Append(rpr);
              //verticalMerge.Val = MergedCellValues.Restart;
              //Text t = new Text(item[i]);
              //t.Space = new EnumValue<SpaceProcessingModeValues>(SpaceProcessingModeValues.Preserve);

              //run.Append(t);

              TableCellProperties tableCellProperties2 = new TableCellProperties();
              tableCellProperties2.Append(verticalMerge);
              cell.Append(tableCellProperties2);
              Text t = new Text(item[i]);
              t.Space = new EnumValue<SpaceProcessingModeValues>(SpaceProcessingModeValues.Preserve);
              run.Append(t);
            }
            //和上一行比较(合并单元格)
            else if (j>0 && j < (tabData.Count) && item[i] == tabData[j -1][i])
            {

              VerticalMerge verticalMerge = new VerticalMerge()
              {
                Val = MergedCellValues.Continue
              };
              TableCellProperties tableCellProperties2 = new TableCellProperties();
              tableCellProperties2.Append(verticalMerge);
              cell.Append(tableCellProperties2);
              Text t = new Text(item[i]);
              t.Space = new EnumValue<SpaceProcessingModeValues>(SpaceProcessingModeValues.Preserve);
              run.Append(t);
            }
            else
            {
              //RunProperties rPr = new RunProperties();
              //rPr.Append(new Bold());
              //run.Append(rPr);

              //单元格内容添加(由内向外顺序)
              Text t = new Text(item[i]);
              t.Space = new EnumValue<SpaceProcessingModeValues>(SpaceProcessingModeValues.Preserve);
              run.Append(t);
            }
            par.Append(run);
            cell.Append(tableCellProperties);
            cell.Append(par);
            row.Append(cell);

          }
          j++;
          //表格添加行
          tab.Append(row);
        }
        //objBody.Append(new Paragraph());
        //objBody.Append(new Table());

        d.MainDocumentPart.Document.Body.Append(new Paragraph(new Run(tab)));
        d.MainDocumentPart.Document.Save();
      }

    }

  }
}

注:他们有的说,标记为MergedCellValues.Continue的纵向单元格一定要给值!(这个我试着给赋值null或者为“”,都能正常合并)

以上就是全部知识点内容,感谢大家的阅读和对我们的支持。

(0)

相关推荐

  • C#采用OpenXml实现给word文档添加文字

    本文实例讲述了C#采用OpenXml实现给word文档添加文字的方法,分享给大家供大家参考.具体方法如下: 一般来说,使用OpenXml给word文档添加文字,每个模块都有自己对于的属性以及内容,要设置样式就先声明属性对象,将样式Append到属性里面,再将属性append到模块里面,那么模块里面的内容就具备该样式了.此方法默认是在文件后面追加内容 示例代码如下: using System; using System.Collections.Generic; using System.Linq;

  • C#利用Openxml读取Excel数据实例

    本文实例讲述了C#利用Openxml读取Excel数据的方法,分享给大家供大家参考.具体分析如下: 这里有些问题,如果当Cell 里面是 日期和浮点型的话,对应的Cell.DataType==Null,对应的时间会转换为一个浮点型,对于这块可以通过DateTime.FromOADate(double d)转换为时间. 可是缺点的地方就是,如果Cell.DataType ==NULL, 根本无法确认这个数据到底是 浮点型还是[被转换为了日期的浮点数].查阅了很多国外资料,的确国外博客有一部分都反映

  • C#采用OpenXml给Word文档添加表格

    本文实例讲述了C#采用OpenXml给Word文档添加表格的方法,是非常实用的操作技巧.分享给大家供大家参考.具体分析如下: 这里将展示如何使用Openxml向Word添加表格. 代码中表头和数据我们用的同一个TableRow来添加,其实可以通过TableHeader来,其实都一样.后面我们还会进一步给出如何设置单元格样式.表头那一行可以自己通过设置样式来控制 示例代码如下: using System; using System.Collections.Generic; using System

  • OpenXml读写Excel实例代码

    新版本的xlsx是使用新的存储格式,貌似是处理过的XML. 对于OpenXML我网上搜了一下,很多人没有介绍.所以我就这里推荐下,相信会成为信息系统开发的必备. 先写出个例子,会发现如此的简介: 复制代码 代码如下: using System;using System.Collections.Generic;using System.Text;using XFormular.config;using System.IO;using com.xtar.amfx;using System.Runti

  • C#采用OpenXml给word里面插入图片

    本文实例讲述了C#采用OpenXml给word里面插入图片的方法,分享给大家供大家参考.具体分析如下: 首先需要指出的是在MSDN官网有完整的OpenXML教程,虽然是全英文的不过还是很有帮助的. 注,原来摘抄代码里面没有模板,在copy过来发现插入word中的图片大小不一样,我们如何查找设置图片大小带代码的那一块,建议自己用在word里面插入一张图片,通过OpenXml Tools 反编译出C#代码,然后改变图片的大小,再次反编译. 使用byeond compare [http://www.s

  • OpenXml合并Table单元格代码实例

    using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Packaging; using DocumentFormat.OpenXml.Wordprocessing; using OpenXML.Model; using System; using System.Collections.Generic; namespace OpenXML { class Program { //表格数据 public static List<List

  • JSP中动态合并单元格的实例代码

    废话不多说了,具体代码如下所示: <span style="font-size:14px;"> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <table width="100%" border="0" cellspacing="0" cellpadding="0&q

  • Element UI中table单元格合并的解决过程

    目录 引言 解决思路: 1.格式化后台返回的数据(根据实际数据格式处理) 2.在 data 中定义数据,需要合并几列就定义几个数组和索引 3.定义合并函数 4.table 组件属性 span-method 的单元格合并方法: 完整代码: 总结 引言 项目中遇到表格单元格合并的需求,在此记录整个解决过程. 项目使用的是 Element UI,表格使用的是 table 组件.Element UI 的 table 表格组件中对单元格进行合并,需要使用 table 组件的 span-method 属性.

  • jQuery实现合并表格单元格中相同行操作示例

    本文实例讲述了jQuery实现合并表格单元格中相同行操作.分享给大家供大家参考,具体如下: 合并的方法 $("#tableid").mergeCell({ cols:[X,X] ///参数为要合并的列 }) /** * 操作表格 合并单元格 行 * 2016年12月13日16:00:41 */ (function($) { // 看过jquery源码就可以发现$.fn就是$.prototype, 只是为了兼容早期版本的插件 // 才保留了jQuery.prototype这个形式 $.f

  • jQuery实现鼠标双击Table单元格变成文本框及输入内容后更新到数据库的方法

    本文实例讲述了jQuery实现鼠标双击Table单元格变成文本框及输入内容后更新到数据库的方法.分享给大家供大家参考,具体如下: JS鼠标双击事件 onDblClick <td width="10%" title="双击修改" ondblclick="ShowElement(this,<%#Eval("id") %> </td> 这里的本人用绑定的值是传的当前行对应的ID号 function ShowEle

  • bootstrap table单元格新增行并编辑

    table单元格新增行并编辑,具体内容如下 需要 bootstrap.min.css -- [ Bootstrap ] jquery-1.8.2.min.js -- [ Jquery ] 代码 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>新建HTML</title> <

  • layui table单元格事件修改值的方法

    事件中的 this相当于document.getElementById("id") 替代方法就是将原本 document.getElementById("id").InnerHTML = "填充代码"; 替换成 $("#id").html("填充代码"); <!DOCTYPE html> <html> <head> <meta charset="utf-8

  • 查看jupyter notebook每个单元格运行时间实例

    打开jupyter notebook, 进入这儿: 搜索框里搜索time,并选中Execute Time,大功告成!!! 最后是这样的, 很方便有木有(如果不行可以尝试重启一下jupyter notebook). 之前有见过其他方法: 命令行里输入: pip install jupyter_contrib_nbextensions jupyter contrib nbextension install --user jupyter nbextension enable execute_time/

  • javascript合并表格单元格实例代码

    本文为大家介绍了一段来源于网络上的代码实例,能够合并单元格,下面和大家分享一下,希望能够给需要的朋友或多或少带来一定的帮助. 代码实例如下: <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"/> <title>表格单元格合并代码</title> <script type="text/javascript"> function au

  • JS拖动选择table里的单元格完整实例【基于jQuery】

    本文实例讲述了JS拖动选择table里的单元格.分享给大家供大家参考,具体如下: 用JS 实现类似Excel里面动态选择单元格的例子,从网上得到的例子,先记录在这里,以后参考用. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>www.jb51.net JS拖动选择table里的单元格&

随机推荐