溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C#如何操作Word

發(fā)布時(shí)間:2021-12-02 11:38:28 來(lái)源:億速云 閱讀:148 作者:iii 欄目:編程語(yǔ)言

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

C#操作Word學(xué)習(xí)實(shí)例:首先引入類庫(kù),Microsoft.Office.Interop.Word,然后進(jìn)行編程。代碼如下:

using System;   using System.Collections.Generic;   using System.ComponentModel;   using System.Data;   using System.Drawing;   using System.Text;   using System.Windows.Forms;   using Microsoft.Office.Interop.Word;    namespace WordTest   {   public partial class Form1 : Form   {   object strFileName;   Object Nothing;   Microsoft.Office.Interop.Word.Application myWordApp =   new Microsoft.Office.Interop.Word.ApplicationClass();   Document myWordDoc;   string strContent = "";    public Form1()   {   InitializeComponent();   }   //C#操作Word學(xué)習(xí)實(shí)例淺析 private void button1_Click(object sender, EventArgs e)   {   createWord();   //openWord();   }    private void createWord()   {   strFileName = System.Windows.Forms.Application.StartupPath + "test.doc";   if (System.IO.File.Exists((string)strFileName))   System.IO.File.Delete((string)strFileName);   Object Nothing = System.Reflection.Missing.Value;   myWordDoc = myWordApp.Documents.Add(ref Nothing,   ref Nothing, ref Nothing, ref Nothing);    #region 將數(shù)據(jù)庫(kù)中讀取得數(shù)據(jù)寫(xiě)入到word文件中    strContent = "你好nnr";   myWordDoc.Paragraphs.Last.Range.Text = strContent;    strContent = "這是測(cè)試程序";   myWordDoc.Paragraphs.Last.Range.Text = strContent;    //C#操作Word學(xué)習(xí)實(shí)例淺析 #endregion    //將WordDoc文檔對(duì)象的內(nèi)容保存為DOC文檔   myWordDoc.SaveAs(ref strFileName, 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);   //關(guān)閉WordDoc文檔對(duì)象   myWordDoc.Close(ref Nothing, ref Nothing, ref Nothing);   //關(guān)閉WordApp組件對(duì)象   myWordApp.Quit(ref Nothing, ref Nothing, ref Nothing);    this.richTextBox1.Text = strFileName + "rn" + "創(chuàng)建成功";    }   private void openWord()   {   //C#操作Word學(xué)習(xí)實(shí)例淺析fontDialog1.ShowDialog();   System.Drawing.Font font = fontDialog1.Font;   object filepath = "D:asp.docx";   object oMissing = System.Reflection.Missing.Value;   myWordDoc = myWordApp.Documents.Open(ref filepath,   ref oMissing, ref oMissing, ref oMissing,   ref oMissing,   ref oMissing, ref oMissing, ref oMissing,   ref oMissing, ref oMissing, ref oMissing,   ref oMissing, ref oMissing, ref oMissing,   ref oMissing, ref oMissing);   myWordDoc.Content.Font.Size = font.Size;   myWordDoc.Content.Font.Name = font.Name;   myWordDoc.Save();   richTextBox1.Text = myWordDoc.Content.Text;     //C#操作Word學(xué)習(xí)實(shí)例淺析myWordDoc.Close(ref oMissing, ref oMissing, ref oMissing);   myWordApp.Quit(ref oMissing, ref oMissing, ref oMissing);   }    }

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

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI