C#动态生成Word文档并填充数据

C#动态生成Word文档步骤之一:添加引用->COM->Microsoft Word 11.0 Object Library

创新互联公司是一家专业提供来宾企业网站建设,专注与成都网站建设、网站设计、H5开发、小程序制作等业务。10年已为来宾众多企业、政府机构等服务。创新互联专业网站设计公司优惠进行中。

C#动态生成Word文档步骤之二:在.cs文件中添加 using  Word;

下面的例子中包括C#对Word文档的创建、插入表格、设置样式等操作: (例子中代码有些涉及数据信息部分被省略,重要是介绍一些C#操作word文档的方法)

 
 
 
  1. public   string  CreateWordFile( string  CheckedInfo)
  2.          ... {
  3.             string  message  =   "" ;
  4.             try 
  5.              ... {
  6.                Object Nothing  =  System.Reflection.Missing.Value;
  7.                Directory.CreateDirectory( " C:/CNSI " );   // 创建文件所在目录 
  8.                 string  name  =   " CNSI_ "   +  DateTime.Now.ToShortString() + " .doc " ;
  9.                 object  filename  =   " C://CNSI// "   +  name;   // 文件保存路径
  10.                 // 创建Word文档 
  11.                Word.Application WordApp  =   new  Word.ApplicationClass();
  12.                Word.Document WordDoc  =  WordApp.Documents.Add( ref  Nothing,  ref  Nothing,  ref  Nothing,  ref  Nothing);
  13.                 // 添加页眉 
  14.                WordApp.ActiveWindow.View.Type  =  WdViewType.wdOutlineView;
  15.                WordApp.ActiveWindow.View.SeekView  =  WdSeekView.wdSeekPrimaryHeader;
  16.                WordApp.ActiveWindow.ActivePane.Selection.InsertAfter( " [页眉内容] " );
  17.                WordApp.Selection.ParagraphFormat.Alignment  =  Word.WdParagraphAlignment.wdAlignParagraphRight; // 设置右对齐 
  18.                WordApp.ActiveWindow.View.SeekView  =  WdSeekView.wdSeekMainDocument; // 跳出页眉设置 
  19.                WordApp.Selection.ParagraphFormat.LineSpacing  =  15f; // 设置文档的行间距
  20.                 // 移动焦点并换行 
  21.                 object  count  =   14 ;
  22.                 object  WdLine  =  Word.WdUnits.wdLine; // 换一行; 
  23.                 WordApp.Selection.MoveDown( ref  WdLine,  ref  count,  ref  Nothing); // 移动焦点 
  24.                 WordApp.Selection.TypeParagraph(); // 插入段落
  25.                  // 文档中创建表格 
  26.                 Word.Table newTable  =  WordDoc.Tables.Add(WordApp.Selection.Range,  12 ,  3 ,  ref  Nothing,  ref  Nothing);
  27.                  // 设置表格样式 
  28.                 newTable.Borders.OutsideLineStyle  =  Word.WdLineStyle.wdLineStyleThickThinLargeGap;
  29.                 newTable.Borders.InsideLineStyle  =  Word.WdLineStyle.wdLineStyleSingle;
  30.                 newTable.Columns[ 1 ].Width  =  100f;
  31.                 newTable.Columns[ 2 ].Width  =  220f;
  32.                 newTable.Columns[ 3 ].Width  =  105f;
  33.                  // 填充表格内容 
  34.                 newTable.Cell( 1 ,  1 ).Range.Text  =   " 产品详细信息表 " ;
  35.                 newTable.Cell( 1 ,  1 ).Range.Bold  =   2 ; // 设置单元格中字体为粗体
  36.                  // 合并单元格 
  37.                 newTable.Cell( 1 ,  1 ).Merge(newTable.Cell( 1 ,  3 ));
  38.                 WordApp.Selection.Cells.VerticalAlignment  =  Word.WdCellVerticalAlignment.wdCellAlignVerticalCenter; // 垂直居中 
  39.                 WordApp.Selection.ParagraphFormat.Alignment  =  Word.WdParagraphAlignment.wdAlignParagraphCenter; // 水平居中
  40.                        
  41.                  // 填充表格内容 
  42.                 newTable.Cell( 2 ,  1 ).Range.Text  =   " 产品基本信息 " ;
  43.                 newTable.Cell( 2 ,  1 ).Range.Font.Color  =  Word.WdColor.wdColorDarkBlue; // 设置单元格内字体颜色
  44.                  // 合并单元格 
  45.                 newTable.Cell( 2 ,  1 ).Merge(newTable.Cell( 2 ,  3 ));
  46.                 WordApp.Selection.Cells.VerticalAlignment  =  Word.WdCellVerticalAlignment.wdCellAlignVerticalCenter;
  47.                   // 填充表格内容 
  48.                  newTable.Cell( 3 ,  1 ).Range.Text  =   " 品牌名称: " ;
  49.                  newTable.Cell( 3 ,  2 ).Range.Text  =  BrandName;
  50.                   // 纵向合并单元格 
  51.                  newTable.Cell( 3 ,  3 ).Select(); // 选中一行 
  52.                   object  moveUnit  =  Word.WdUnits.wdLine;
  53.                   object  moveCount  =   5 ;
  54.                   object  moveExtend  =  Word.WdMovementType.wdExtend;
  55.                   WordApp.Selection.MoveDown( ref  moveUnit,  ref  moveCount,  ref  moveExtend);
  56.                   WordApp.Selection.Cells.Merge();
  57.                    // 插入图片 
  58.                    string  FileName  =  Picture; // 图片所在路径 
  59.                    object  LinkToFile  =   false ;
  60.                    object  SaveWithDocument  =   true ;
  61.                    object  Anchor  =  WordDoc.Application.Selection.Range;
  62.                   WordDoc.Application.ActiveDocument.InlineShapes.AddPicture(FileName,  ref  LinkToFile,  ref  SaveWithDocument,  ref  Anchor);
  63.                    WordDoc.Application.ActiveDocument.InlineShapes[ 1 ].Width  =  100f; // 图片宽度 
  64.                    WordDoc.Application.ActiveDocument.InlineShapes[ 1 ].Height  =  100f; // 图片高度
  65.                     // 将图片设置为四周环绕型 
  66.                    Word.Shape s  =  WordDoc.Application.ActiveDocument.InlineShapes[ 1 ].ConvertToShape();
  67.                    s.WrapFormat.Type  =  Word.WdWrapType.wdWrapSquare;
  68.                        
  69.                    newTable.Cell( 12 ,  1 ).Range.Text  =   " 产品特殊属性 " ;
  70.                    newTable.Cell( 12 ,  1 ).Merge(newTable.Cell( 12 ,  3 ));
  71.                      // 在表格中增加行 
  72.                     WordDoc.Content.Tables[ 1 ].Rows.Add( ref  Nothing);
  73.                      
  74.                     WordDoc.Paragraphs.Last.Range.Text  =   " 文档创建时间: "   +  DateTime.Now.ToString(); // “落款” 
  75.                     WordDoc.Paragraphs.Last.Alignment  =  Word.WdParagraphAlignment.wdAlignParagraphRight;
  76.                     // 文件保存 
  77.                    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);
  78.                    WordDoc.Close( ref  Nothing,  ref  Nothing,  ref  Nothing);
  79.                    WordApp.Quit( ref  Nothing,  ref  Nothing,  ref  Nothing);
  80.                    message = name + " 文档生成成功,以保存到C:CNSI下 " ;
  81.            } 
  82.             catch 
  83.              ... {
  84.                message  =   " 文件导出异常! " ;
  85.            } 
  86.             return  message;
  87.        } 

这样,就实现了 C#动态生成Word文档。

网页题目:C#动态生成Word文档并填充数据
地址分享:http://www.csdahua.cn/qtweb/news35/540335.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网