search
HomeBackend DevelopmentC#.Net TutorialExamples of C# operations for creating, inserting tables, and setting styles in Word documents

This article mainly introduces the operation examples of C# to create, insert tables, and set styles in Word documents. It has certain reference value. Now I share it with you. Friends in need can refer to it

using Word;

The following examples include C# operations for creating Word documents, inserting tables, setting styles, etc.:

(in the example Some parts of the code involving data information have been omitted. The important thing is to introduce some C# methods of operating word documents)

 public string CreateWordFile(string CheckedInfo)
  ...{
   string message = "";
   try
   ...{
    Object Nothing = System.Reflection.Missing.Value;
    Directory.CreateDirectory("C:/CNSI"); //创建文件所在目录
    string name = "CNSI_" + DateTime.Now.ToShortString()+".doc";
    object filename = "C://CNSI//" + name; //文件保存路径
    //创建Word文档
    Word.Application WordApp = new Word.ApplicationClass();
    Word.Document WordDoc = WordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);
    //添加页眉
    WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView;
    WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader;
    WordApp.ActiveWindow.ActivePane.Selection.InsertAfter("[页眉内容]");
    WordApp.Selection.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphRight;//设置右对齐
    WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument;//跳出页眉设置
    WordApp.Selection.ParagraphFormat.LineSpacing = 15f;//设置文档的行间距
    //移动焦点并换行
    object count = 14;
    object WdLine = Word.WdUnits.wdLine;//换一行;
     WordApp.Selection.MoveDown(ref WdLine, ref count, ref Nothing);//移动焦点
     WordApp.Selection.TypeParagraph();//插入段落
     //文档中创建表格
     Word.Table newTable = WordDoc.Tables.Add(WordApp.Selection.Range, 12, 3, ref Nothing, ref Nothing);
     //设置表格样式
     newTable.Borders.OutsideLineStyle = Word.WdLineStyle.wdLineStyleThickThinLargeGap;
     newTable.Borders.InsideLineStyle = Word.WdLineStyle.wdLineStyleSingle;
     newTable.Columns[1].Width = 100f;
     newTable.Columns[2].Width = 220f;
     newTable.Columns[3].Width = 105f;
     //填充表格内容
     newTable.Cell(1, 1).Range.Text = "产品详细信息表";
     newTable.Cell(1, 1).Range.Bold = 2;//设置单元格中字体为粗体
     //合并单元格
     newTable.Cell(1, 1).Merge(newTable.Cell(1, 3));
     WordApp.Selection.Cells.VerticalAlignment = Word.WdCellVerticalAlignment.wdCellAlignVerticalCenter;//垂直居中
     WordApp.Selection.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter;//水平居中
      
     //填充表格内容
     newTable.Cell(2, 1).Range.Text = "产品基本信息";
     newTable.Cell(2, 1).Range.Font.Color = Word.WdColor.wdColorDarkBlue;//设置单元格内字体颜色
     //合并单元格
     newTable.Cell(2, 1).Merge(newTable.Cell(2, 3));
     WordApp.Selection.Cells.VerticalAlignment = Word.WdCellVerticalAlignment.wdCellAlignVerticalCenter;
     //填充表格内容
     newTable.Cell(3, 1).Range.Text = "品牌名称:";
     newTable.Cell(3, 2).Range.Text = BrandName;
     //纵向合并单元格
     newTable.Cell(3, 3).Select();//选中一行
     object moveUnit = Word.WdUnits.wdLine;
     object moveCount = 5;
     object moveExtend = Word.WdMovementType.wdExtend;
     WordApp.Selection.MoveDown(ref moveUnit, ref moveCount, ref moveExtend);
     WordApp.Selection.Cells.Merge();
     //插入图片
     string FileName = Picture;//图片所在路径
     object LinkToFile = false;
     object SaveWithDocument = true;
     object Anchor = WordDoc.Application.Selection.Range;
     WordDoc.Application.ActiveDocument.InlineShapes.AddPicture(FileName, ref LinkToFile, ref SaveWithDocument, ref Anchor);
     WordDoc.Application.ActiveDocument.InlineShapes[1].Width = 100f;//图片宽度
     WordDoc.Application.ActiveDocument.InlineShapes[1].Height = 100f;//图片高度
     //将图片设置为四周环绕型
     Word.Shape s = WordDoc.Application.ActiveDocument.InlineShapes[1].ConvertToShape();
     s.WrapFormat.Type = Word.WdWrapType.wdWrapSquare;
      
     newTable.Cell(12, 1).Range.Text = "产品特殊属性";
     newTable.Cell(12, 1).Merge(newTable.Cell(12, 3));
      //在表格中增加行
      WordDoc.Content.Tables[1].Rows.Add(ref Nothing);
      
      WordDoc.Paragraphs.Last.Range.Text = "文档创建时间:" + DateTime.Now.ToString();//“落款”
      WordDoc.Paragraphs.Last.Alignment = Word.WdParagraphAlignment.wdAlignParagraphRight;
     //文件保存
     WordDoc.SaveAs(ref filename, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
     WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
     WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
     message=name+"文档生成成功,以保存到C:CNSI下";
   }
   catch
   ...{
    message = "文件导出异常!";
   }
   return message;
  }


The above is the detailed content of Examples of C# operations for creating, inserting tables, and setting styles in Word documents. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
实用Word技巧分享:表格自定义样式,美化表格!实用Word技巧分享:表格自定义样式,美化表格!Jul 20, 2022 am 10:25 AM

在之前的文章《实用Word技巧分享:详解怎么更改图片颜色和形状》中,我们了解了更改图片颜色和图片形状的方法。而今天我们来聊一聊word表格,讲解美化表格--自定义表格样式的方法,快来看看吧!

Word与Excel联动:表格借用Word进行分栏打印!Word与Excel联动:表格借用Word进行分栏打印!May 07, 2022 am 10:28 AM

在之前的文章《实用Word技巧分享:聊聊你没用过的“行号”功能》中,我们了解了Word中你肯定没用过的"行号”功能。今天继续实用Word技巧分享,看看Excel表格怎么借用Word进行分栏打印,快来收藏使用吧!

实用Word技巧分享:设置字符间距、行距和段落间距实用Word技巧分享:设置字符间距、行距和段落间距Apr 26, 2022 am 10:25 AM

在之前的文章《实用Word技巧分享:设置页码的终极方法!》中,我们学习了Word页码的设置方法。而今天我们来一起聊聊Word文本间距设置的几个技巧,快来收藏使用吧!

实用Word技巧分享:使页面自动滚动实用Word技巧分享:使页面自动滚动May 02, 2022 am 10:00 AM

在之前的文章《实用Word技巧分享:隐藏图片,提升文档浏览和编辑效率!》中,我们学习了隐藏图片的技巧,可提升文档浏览和编辑效率。下面本篇文章再给大家分享一个实用Word技巧,看看怎么让页面自动滚动,快来收藏使用吧!

实用Word技巧分享:脚注和尾注的设置、转换和删除实用Word技巧分享:脚注和尾注的设置、转换和删除Jul 21, 2022 am 10:29 AM

在之前的文章《实用Word技巧分享:表格自定义样式,美化表格!》中,我们了解了自定义表格样式的方法。而今天我们来聊一聊word脚注和尾注,介绍一下脚注和尾注的设置使用方法,快来看看吧!

实用Word技巧分享:【F4】键快速统一图片大小实用Word技巧分享:【F4】键快速统一图片大小Jun 07, 2022 am 10:27 AM

在之前的文章《实用Word技巧分享:怎么跨文档快速复制样式》中,我们了解了在文档间快速复制样式的方法。今天我们聊聊Word快捷键,聊聊【F4】键快速统一图片大小,快来看看吧!

实用Word技巧分享:怎么精控页面的“行数”和“字符个数”实用Word技巧分享:怎么精控页面的“行数”和“字符个数”Jun 01, 2022 am 11:04 AM

在之前的文章《实用Word技巧分享:图、表如何自动编号?》中,我们了解了Word排版-让图、表自动编号的方法。而今天聊聊Word精确控制页面“行数”和“字符个数”的方法,快来看看吧!

实用Word技巧分享:表格中如何自动添加编号实用Word技巧分享:表格中如何自动添加编号Apr 22, 2022 am 09:44 AM

在之前的文章《实用Word技巧分享:如何一键删除所有数字》中,我们学习了Word中一键删除所有数字的方法。而今天我们来聊聊Word表格中如何自动添加编号,简单却很实用!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),