C# DocX操作Word文档(.docx)
程序员文章站
2022-05-27 11:58:28
...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using Novacode;
namespace SYS_TEST.BaseClass
{
//DocX方式
//DocX是一个简单的操作以.docx结尾的Word文档的工具
//优点:只有200多KB,容易掌握,可以轻易的操作文本替换 文本框、表格、图片等
//缺点:存在一些功能没有实现
public class DocXClass
{
/// <summary>
/// DocX操作Word文档(.docx)
/// </summary>
/// <param name="fileName"></param>
public static void OperteWordFile(string fileName)
{
using (DocX document = DocX.Load(fileName))
{
//文本替换
document.ReplaceText("AAA", "BBB");
//表格操作
var table = document.Tables[0];
for (int i = 1; i <= 3; i++)
{
table.InsertRow(i);
table.Rows[i].Cells[0].Paragraphs[0].Append("123");
table.Rows[i].Cells[1].Paragraphs[0].Append("456");
table.Rows[i].Cells[0].Width = 200;
table.Rows[i].Cells[1].Width = 80;
}
document.SaveAs(fileName);
}
}
}
}