ASP.NET(C#)產生Word文檔

來源:互聯網
上載者:User

//僅供參考
using MSWord = Microsoft.Office.Interop.Word;
using System.IO;
using Sytem.Reflection;

string filePath;
string content;
MSWord.Application wordApp;
MSWord.Document wordDoc;
filePath = @"d:\testWord.docx";
wordApp = new MSWord.ApplicationClass();

if(File.Exists(filePath))
{
  File.Delete(filePath);
}

Object nothing = Missing.Value;
wordDoc = wordApp.Documents.Add(ref nothing,ref nothing,ref nothing,ref nothing);

/* 1、寫入普通文本   */
content = "Hello!";
wordDoc.Paragraphs.Last.Range.Text = content;
object format = MSWord.WdSaveFormat.wdFormatDocument97;

/* 2、 寫入需要的特殊格式文本 */
//寫入15號字型
content = "這一行是15號字型的文本";
wordDoc.Paragraphs.Last.Range.Font.Size = 15;
wordDoc.Paragraphs.Last.Range.Text = content;

//寫入斜體文本
content = "這一行是斜體文本";
wordDoc.Paragraphs.Last.Range.Font.Italic = 1;
wordDoc.Paragraphs.Last.Range.Text = content;

//寫入紅色底線文本
content = "這一行是紅色底線的文本";
wordDoc.Paragraphs.Last.Range.Font.Underline = MSWord.WdUnderline.wdUnderlineThick;
wordDoc.Paragraphs.Last.Range.Font.UnderlineColor = MSWord.WdColor.wdColorRed;
wordDoc.Paragraphs.Last.Range.Text = content;

/* 3、寫入表格   */
//表格對象
MSWord.Table table = wordDoc.Tables.Add(wordApp.Selection.Range,5,
      5,ref nothing,ref nothing);
table.Border.Enable = 1;
for(int i=1;; i<6; i++)
{
  for(int j=1; j<6; j++)
  {
    table.Cell(i,j).Range.Text = ""+i+"行","+j+"列";
  }
}

/* 4、插入圖片   */
string jpgName = @"d:\logo.jpg";
Object range = wordDoc.Paragraphs.Last.Range;
Object linkToFile = false;
Object saveWithDocument = true;
wordDoc.InlineShapes.AddPicture(jpgName,ref linkToFile,ref saveWithDocument,ref range);

wordDoc.SaveAs(ref filePath, ref format, 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);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.