程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#封裝Word常用操作類

C#封裝Word常用操作類

編輯:C#入門知識

1 using System;
  2 using System.Collections.Generic;
  3 using System.Text;
  4 using Microsoft.Office.Interop.Word;
  5 using System.Diagnostics;
  6 namespace OfficeManager
  7 {
  8     public class WordClass : IDisposable
  9     {
 10         #region 字段
 11         private _Application m_WordApp = null;
 12         private _Document m_Document = null;
 13         private object missing = System.Reflection.Missing.Value;
 14         #endregion
 15         #region 構造函數與析構函數
 16         public WordClass()
 17         {
 18             m_WordApp = new ApplicationClass();
 19         }
 20         ~WordClass()
 21         {
 22             try
 23             {
 24                 if (m_WordApp != null)
 25                     m_WordApp.Quit(ref missing, ref missing, ref missing);
 26             }
 27             catch (Exception ex)
 28             {
 29                 Debug.Write(ex.ToString());
 30             }
 31         }
 32         #endregion
 33         #region 屬性
 34         public

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved