成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

C#生成Word文件的代碼分享

這篇文章主要介紹“C#生成Word文件的代碼分享”,在日常操作中,相信很多人在C#生成Word文件的代碼分享問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C#生成Word文件的代碼分享”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站,成都做網(wǎng)站公司-創(chuàng)新互聯(lián)建站已向上1000+企業(yè)提供了,網(wǎng)站設(shè)計(jì),網(wǎng)站制作,網(wǎng)絡(luò)營(yíng)銷(xiāo)等服務(wù)!設(shè)計(jì)與技術(shù)結(jié)合,多年網(wǎng)站推廣經(jīng)驗(yàn),合理的價(jià)格為您打造企業(yè)品質(zhì)網(wǎng)站。

本文實(shí)例為大家分享了C#生成Word文件的具體代碼,供大家參考,具體內(nèi)容如下

通過(guò)Microsoft.Office.Interop.Word生成Word文檔

1.引用類(lèi) WordReport.cs,代碼如下:

using System;using System.Collections.Generic;using System.Text;using Microsoft.Office.Interop.Word;using MSWord = Microsoft.Office.Interop.Word;using System.Reflection;using System.IO; namespace CRM.Common{  public class WordReport  {    private _Application wordApp = null;    private _Document wordDoc = null;    object unite = MSWord.WdUnits.wdStory;    Object Nothing = Missing.Value;    public _Application Application    {      get      {        return wordApp;      }      set      {        wordApp = value;      }    }    public _Document Document    {      get      {        return wordDoc;      }      set      {        wordDoc = value;      }    }     // 通過(guò)模板創(chuàng)建新文檔    public void CreateNewDocument(string filePath)    {      try      {        killWinWordProcess();        wordApp = new ApplicationClass();        wordApp.DisplayAlerts = WdAlertLevel.wdAlertsNone;        wordApp.Visible = false;        object missing = System.Reflection.Missing.Value;        object templateName = filePath;        wordDoc = wordApp.Documents.Open(ref templateName, ref missing,          ref missing, ref missing, ref missing, ref missing, ref missing,          ref missing, ref missing, ref missing, ref missing, ref missing,          ref missing, ref missing, ref missing, ref missing);      }      catch (Exception ex)      {              }    }    public void CreateNewDocument()    {      try      {        //killWinWordProcess();        wordApp = new ApplicationClass();        wordApp.DisplayAlerts = WdAlertLevel.wdAlertsNone;        wordApp.Visible = false;        Object Nothing = Missing.Value;        wordDoc = wordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);      }      catch (Exception ex)      {              }    }    // 保存新文件    public void SaveDocument(string filePath)    {      if (File.Exists((string)filePath))      {        File.Delete((string)filePath);      }      object fileName = filePath;      object format = WdSaveFormat.wdFormatDocument;//保存格式      object miss = System.Reflection.Missing.Value;      wordDoc.SaveAs(ref fileName, ref format, ref miss,        ref miss, ref miss, ref miss, ref miss,        ref miss, ref miss, ref miss, ref miss,        ref miss, ref miss, ref miss, ref miss,        ref miss);      //關(guān)閉wordDoc,wordApp對(duì)象      object SaveChanges = WdSaveOptions.wdSaveChanges;      object OriginalFormat = WdOriginalFormat.wdOriginalDocumentFormat;      object RouteDocument = false;      wordDoc.Close(ref SaveChanges, ref OriginalFormat, ref RouteDocument);      wordApp.Quit(ref SaveChanges, ref OriginalFormat, ref RouteDocument);    }    public void InsertText(string strContent)    {      //寫(xiě)入普通文本      wordDoc.Content.InsertAfter(strContent);      wordApp.Selection.EndKey(ref unite, ref Nothing); //將光標(biāo)移動(dòng)到文檔末尾           }    public void InsertTitle(string strContent)    {      //寫(xiě)入普通文本      wordApp.Selection.EndKey(ref unite, ref Nothing); //將光標(biāo)移動(dòng)到文檔末尾       try      {        wordDoc.Paragraphs.Last.Range.set_Style("標(biāo)題 5");      }      catch (Exception ex)      {        wordDoc.Paragraphs.Last.Range.set_Style("Heading 5");      }      wordDoc.Paragraphs.Last.Range.Font.Color = MSWord.WdColor.wdColorBlack;      wordDoc.Paragraphs.Last.Range.Font.Size = 11;      wordDoc.Paragraphs.Last.Range.Font.Name = "宋體";      wordDoc.Paragraphs.Last.Range.Text = strContent;      wordApp.Selection.EndKey(ref unite, ref Nothing); //將光標(biāo)移動(dòng)到文檔末尾      try      {        wordDoc.Paragraphs.Last.Range.set_Style("Normal");      }      catch (Exception ex)      {        wordDoc.Paragraphs.Last.Range.set_Style("正文");      }      }    // 在書(shū)簽處插入值    public bool InsertValue(string bookmark, string value)    {      object bkObj = bookmark;      if (wordApp.ActiveDocument.Bookmarks.Exists(bookmark))      {        wordApp.ActiveDocument.Bookmarks.get_Item(ref bkObj).Select();        wordApp.Selection.TypeText(value);        return true;      }      return false;    }     // 插入表格,bookmark書(shū)簽    public Table InsertTable(string bookmark, int rows, int columns, float width)    {      object miss = System.Reflection.Missing.Value;      object oStart = bookmark;      Range range = wordDoc.Bookmarks.get_Item(ref oStart).Range;//表格插入位置      Table newTable = wordDoc.Tables.Add(range, rows, columns, ref miss, ref miss);      //設(shè)置表的格式      newTable.Borders.Enable = 1; //允許有邊框,默認(rèn)沒(méi)有邊框(為0時(shí)報(bào)錯(cuò),1為實(shí)線邊框,2、3為虛線邊框,以后的數(shù)字沒(méi)試過(guò))      newTable.Borders.OutsideLineWidth = WdLineWidth.wdLineWidth050pt;//邊框?qū)挾?nbsp;     if (width != 0)      {        newTable.PreferredWidth = width;//表格寬度      }      newTable.AllowPageBreaks = false;      return newTable;    }      // 合并單元格 表id,開(kāi)始行號(hào),開(kāi)始列號(hào),結(jié)束行號(hào),結(jié)束列號(hào)    public void MergeCell(int n, int row1, int column1, int row2, int column2)    {      wordDoc.Content.Tables[n].Cell(row1, column1).Merge(wordDoc.Content.Tables[n].Cell(row2, column2));    }     // 合并單元格 表名,開(kāi)始行號(hào),開(kāi)始列號(hào),結(jié)束行號(hào),結(jié)束列號(hào)    public void MergeCell(Microsoft.Office.Interop.Word.Table table, int row1, int column1, int row2, int column2)    {      table.Cell(row1, column1).Merge(table.Cell(row2, column2));    }     // 設(shè)置表格內(nèi)容對(duì)齊方式 Align水平方向,Vertical垂直方向(左對(duì)齊,居中對(duì)齊,右對(duì)齊分別對(duì)應(yīng)Align和Vertical的值為-1,0,1)Microsoft.Office.Interop.Word.Table table    public void SetParagraph_Table(int n, int Align, int Vertical)    {      switch (Align)      {        case -1: wordDoc.Content.Tables[n].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft; break;//左對(duì)齊        case 0: wordDoc.Content.Tables[n].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter; break;//水平居中        case 1: wordDoc.Content.Tables[n].Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphRight; break;//右對(duì)齊      }      switch (Vertical)      {        case -1: wordDoc.Content.Tables[n].Range.Cells.VerticalAlignment = WdCellVerticalAlignment.wdCellAlignVerticalTop; break;//頂端對(duì)齊        case 0: wordDoc.Content.Tables[n].Range.Cells.VerticalAlignment = WdCellVerticalAlignment.wdCellAlignVerticalCenter; break;//垂直居中        case 1: wordDoc.Content.Tables[n].Range.Cells.VerticalAlignment = WdCellVerticalAlignment.wdCellAlignVerticalBottom; break;//底端對(duì)齊      }    }     // 設(shè)置單元格內(nèi)容對(duì)齊方式    public void SetParagraph_Table(int n, int row, int column, int Align, int Vertical)    {      switch (Align)      {        case -1: wordDoc.Content.Tables[n].Cell(row, column).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphLeft; break;//左對(duì)齊        case 0: wordDoc.Content.Tables[n].Cell(row, column).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter; break;//水平居中        case 1: wordDoc.Content.Tables[n].Cell(row, column).Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphRight; break;//右對(duì)齊      }      switch (Vertical)      {        case -1: wordDoc.Content.Tables[n].Cell(row, column).Range.Cells.VerticalAlignment = WdCellVerticalAlignment.wdCellAlignVerticalTop; break;//頂端對(duì)齊        case 0: wordDoc.Content.Tables[n].Cell(row, column).Range.Cells.VerticalAlignment = WdCellVerticalAlignment.wdCellAlignVerticalCenter; break;//垂直居中        case 1: wordDoc.Content.Tables[n].Cell(row, column).Range.Cells.VerticalAlignment = WdCellVerticalAlignment.wdCellAlignVerticalBottom; break;//底端對(duì)齊      }     }      // 設(shè)置表格字體    public void SetFont_Table(Microsoft.Office.Interop.Word.Table table, string fontName, double size)    {      if (size != 0)      {        table.Range.Font.Size = Convert.ToSingle(size);      }      if (fontName != "")      {        table.Range.Font.Name = fontName;      }    }     // 設(shè)置單元格字體    public void SetFont_Table(int n, int row, int column, string fontName, double size, int bold)    {      if (size != 0)      {        wordDoc.Content.Tables[n].Cell(row, column).Range.Font.Size = Convert.ToSingle(size);      }      if (fontName != "")      {        wordDoc.Content.Tables[n].Cell(row, column).Range.Font.Name = fontName;      }      wordDoc.Content.Tables[n].Cell(row, column).Range.Font.Bold = bold;// 0 表示不是粗體,其他值都是    }     // 是否使用邊框,n表格的序號(hào),use是或否    // 該處邊框參數(shù)可以用int代替bool可以讓方法更全面    // 具體值方法中介紹    public void UseBorder(int n, bool use)    {      if (use)      {        wordDoc.Content.Tables[n].Borders.Enable = 1;        //允許有邊框,默認(rèn)沒(méi)有邊框(為0時(shí)無(wú)邊框,1為實(shí)線邊框,2、3為虛線邊框,以后的數(shù)字沒(méi)試過(guò))      }      else      {        wordDoc.Content.Tables[n].Borders.Enable = 0;      }    }     // 給表格插入一行,n表格的序號(hào)從1開(kāi)始記    public void AddRow(int n)    {      object miss = System.Reflection.Missing.Value;      wordDoc.Content.Tables[n].Rows.Add(ref miss);    }     // 給表格添加一行    public void AddRow(Microsoft.Office.Interop.Word.Table table)    {      object miss = System.Reflection.Missing.Value;      table.Rows.Add(ref miss);    }     // 給表格插入rows行,n為表格的序號(hào)    public void AddRow(int n, int rows)    {      object miss = System.Reflection.Missing.Value;      Microsoft.Office.Interop.Word.Table table = wordDoc.Content.Tables[n];      for (int i = 0; i < rows; i++)      {        table.Rows.Add(ref miss);      }    }     // 刪除表格第rows行,n為表格的序號(hào)    public void DeleteRow(int n, int row)    {      Microsoft.Office.Interop.Word.Table table = wordDoc.Content.Tables[n];      table.Rows[row].Delete();    }     // 給表格中單元格插入元素,table所在表格,row行號(hào),column列號(hào),value插入的元素    public void InsertCell(Microsoft.Office.Interop.Word.Table table, int row, int column, string value)    {      table.Cell(row, column).Range.Text = value;    }     // 給表格中單元格插入元素,n表格的序號(hào)從1開(kāi)始記,row行號(hào),column列號(hào),value插入的元素    public void InsertCell(int n, int row, int column, string value)    {      wordDoc.Content.Tables[n].Cell(row, column).Range.Text = value;    }     // 給表格插入一行數(shù)據(jù),n為表格的序號(hào),row行號(hào),columns列數(shù),values插入的值    public void InsertCell(int n, int row, int columns, string[] values)    {      Microsoft.Office.Interop.Word.Table table = wordDoc.Content.Tables[n];      for (int i = 0; i < columns; i++)      {        table.Cell(row, i + 1).Range.Text = values[i];      }    }     // 插入圖片    public void InsertPicture(string bookmark, string picturePath, float width, float hight)    {      object miss = System.Reflection.Missing.Value;      object oStart = bookmark;      Object linkToFile = false;    //圖片是否為外部鏈接      Object saveWithDocument = true; //圖片是否隨文檔一起保存       object range = wordDoc.Bookmarks.get_Item(ref oStart).Range;//圖片插入位置      wordDoc.InlineShapes.AddPicture(picturePath, ref linkToFile, ref saveWithDocument, ref range);      wordDoc.Application.ActiveDocument.InlineShapes[1].Width = width;  //設(shè)置圖片寬度      wordDoc.Application.ActiveDocument.InlineShapes[1].Height = hight; //設(shè)置圖片高度    }    public void InsertPicture(string picturePath, float width, float hight,WdParagraphAlignment align)    {      object unite = MSWord.WdUnits.wdStory;      Object Nothing = Missing.Value;      Application.Selection.EndKey(ref unite, ref Nothing); //將光標(biāo)移動(dòng)到文檔末尾      //要向Word文檔中插入圖片的位置      Object range = wordDoc.Paragraphs.Last.Range;      //定義該插入的圖片是否為外部鏈接      Object linkToFile = false;        //默認(rèn),這里貌似設(shè)置為bool類(lèi)型更清晰一些      //定義要插入的圖片是否隨Word文檔一起保存      Object saveWithDocument = true;       //默認(rèn)      //使用InlineShapes.AddPicture方法(【即“嵌入型”】)插入圖片      InlineShape shape = wordDoc.InlineShapes.AddPicture(picturePath, ref linkToFile, ref saveWithDocument, ref range);      wordApp.Selection.ParagraphFormat.Alignment = align;//            //設(shè)置圖片寬高的絕對(duì)大小      if (width!=-1)        wordDoc.InlineShapes[1].Width = width;      if(hight!=-1)        wordDoc.InlineShapes[1].Height = hight;      try      {        wordDoc.Paragraphs.Last.Range.set_Style("正文");      }      catch(Exception ex)      {        wordDoc.Paragraphs.Last.Range.set_Style("Normal");      }         shape.Borders.Enable = 12;          //shape.ConvertToShape().WrapFormat.Type = MSWord.WdWrapType.wdWrapSquare;//四周環(huán)繞的方式    }     // 插入一段文字,text為文字內(nèi)容    public void InsertText(string bookmark, string text)    {      object oStart = bookmark;      object range = wordDoc.Bookmarks.get_Item(ref oStart).Range;      Paragraph wp = wordDoc.Content.Paragraphs.Add(ref range);      wp.Format.SpaceBefore = 6;      wp.Range.Text = text;      wp.Format.SpaceAfter = 24;      wp.Range.InsertParagraphAfter();      wordDoc.Paragraphs.Last.Range.Text = "\n";    }     // 殺掉winword.exe進(jìn)程    public void killWinWordProcess()    {      System.Diagnostics.Process[] processes = System.Diagnostics.Process.GetProcessesByName("WINWORD");      foreach (System.Diagnostics.Process process in processes)      {        bool b = process.MainWindowTitle == "";        if (process.MainWindowTitle == "")        {          process.Kill();        }      }    }       internal void InsertTable(int tableRow, int tableColumn,List<string> imagePaths)    {      wordApp.Selection.EndKey(ref unite, ref Nothing); //將光標(biāo)移動(dòng)到文檔末尾      MSWord.Table table = wordDoc.Tables.Add(wordApp.Selection.Range,                          tableRow, tableColumn, ref Nothing, ref Nothing);       //默認(rèn)創(chuàng)建的表格沒(méi)有邊框,這里修改其屬性,使得創(chuàng)建的表格帶有邊框       table.Borders.Enable = 0;//這個(gè)值可以設(shè)置得很大,例如5、13等等       //表格的索引是從1開(kāi)始的。      for (int i = 1; i <= tableRow; i++)      {        for (int j = 1; j <= tableColumn; j++)        {                    int index = (i-1) * tableColumn + j-1;          if (index < imagePaths.Count)//有文件          {            string FileName = imagePaths[index]; //圖片所在路徑            object LinkToFile = false;            object SaveWithDocument = true;            object Anchor = table.Cell(i, j).Range;//選中要添加圖片的單元格            MSWord.InlineShape il = wordDoc.Application.ActiveDocument.InlineShapes.AddPicture(FileName, ref LinkToFile, ref SaveWithDocument, ref Anchor);             //圖片大小            il.Width = 100;//圖片寬度            il.Height = 100;//圖片高度            table.Rows[i].Cells[j].Split(2, 1);            table.Cell(i+1, j).Range.Text = "圖片名稱(chēng):"+(index+1).ToString(); //            table.Cell(i+1, j).Merge(table.Cell(i, j));//縱向合并          }        }      }      //設(shè)置table樣式      table.Rows.HeightRule = MSWord.WdRowHeightRule.wdRowHeightAtLeast;//高度規(guī)則是:行高有最低值下限?      table.Rows.Height = wordApp.CentimetersToPoints(float.Parse("0.8"));//        table.Range.Font.Size = 10.5F;      table.Range.Font.Bold = 0;       table.Range.ParagraphFormat.Alignment = MSWord.WdParagraphAlignment.wdAlignParagraphCenter;//表格文本居中      table.Range.Cells.VerticalAlignment = MSWord.WdCellVerticalAlignment.wdCellAlignVerticalBottom;//文本垂直貼到底部      //設(shè)置table邊框樣式      table.Borders.OutsideLineStyle = MSWord.WdLineStyle.wdLineStyleNone;//表格外框是雙線      table.Borders.InsideLineStyle = MSWord.WdLineStyle.wdLineStyleNone;//表格內(nèi)框是單線       table.Rows[1].Range.Font.Bold = 1;//加粗      table.Rows[1].Range.Font.Size = 12F;      table.Cell(1, 1).Range.Font.Size = 10.5F;    }  }}

2.生成Word文檔

/// <summary>/// /// </summary>/// <param name="path">like string path=@"c:\\temp\\"</param>public void GengerateWord(string path)    {      string fileName = "test.doc";      WordReport report = new WordReport();      report.CreateNewDocument(); //創(chuàng)建文件      report.InsertTitle("標(biāo)題");      float width = 420;//圖片寬度      float height = 200;//圖片高度      report.InsertPicture("圖片地址", width, height, WdParagraphAlignment.wdAlignParagraphCenter);      report.SaveDocument(path+ fileName);}

到此,關(guān)于“C#生成Word文件的代碼分享”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

本文標(biāo)題:C#生成Word文件的代碼分享
網(wǎng)址分享:http://jinyejixie.com/article12/ppiodc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、、域名注冊(cè)、網(wǎng)站收錄、軟件開(kāi)發(fā)微信公眾號(hào)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化
普宁市| 余干县| 五大连池市| 湖口县| 安多县| 卢湾区| 金华市| 邢台市| 河北省| 凤山市| 宜宾县| 淅川县| 江西省| 阿拉善左旗| 呼伦贝尔市| 淳安县| 靖远县| 五峰| 怀集县| 连城县| 赤城县| 青神县| 呼玛县| 灵川县| 镇安县| 杭锦后旗| 犍为县| 文水县| 郑州市| 汕尾市| 克拉玛依市| 封丘县| 五华县| 天柱县| 金塔县| 昔阳县| 菏泽市| 清流县| 松江区| 延庆县| 白银市|