中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c# office如何處理文檔屬性

c#
小樊
82
2024-07-26 20:04:17
欄目: 編程語言

您可以使用C#代碼來處理Office文檔的屬性。以下是一些示例代碼,演示如何使用C#讀取和設置Office文檔的屬性:

  1. 讀取文檔屬性:
using System;
using Microsoft.Office.Interop.Word;

class Program
{
    static void Main()
    {
        Application wordApp = new Application();
        Document doc = wordApp.Documents.Open(@"C:\path\to\your\document.docx");

        // 獲取文檔的標題屬性
        string title = doc.BuiltInDocumentProperties[WdBuiltInProperty.wdPropertyTitle].Value.ToString();
        Console.WriteLine("Title: " + title);

        // 獲取文檔的作者屬性
        string author = doc.BuiltInDocumentProperties[WdBuiltInProperty.wdPropertyAuthor].Value.ToString();
        Console.WriteLine("Author: " + author);

        // 關閉文檔并退出Word應用程序
        doc.Close();
        wordApp.Quit();
    }
}
  1. 設置文檔屬性:
using System;
using Microsoft.Office.Interop.Word;

class Program
{
    static void Main()
    {
        Application wordApp = new Application();
        Document doc = wordApp.Documents.Open(@"C:\path\to\your\document.docx");

        // 設置文檔的標題屬性
        doc.BuiltInDocumentProperties[WdBuiltInProperty.wdPropertyTitle].Value = "New Title";

        // 設置文檔的作者屬性
        doc.BuiltInDocumentProperties[WdBuiltInProperty.wdPropertyAuthor].Value = "John Doe";

        // 保存文檔
        doc.Save();

        // 關閉文檔并退出Word應用程序
        doc.Close();
        wordApp.Quit();
    }
}

請注意,以上代碼示例使用了Microsoft Office的Interop庫,因此您需要在項目中添加對"Microsoft.Office.Interop.Word"的引用。另外,確保您已安裝了對應版本的Microsoft Office,并且需要在代碼中替換實際的文檔路徑。

0
永济市| 松阳县| 江达县| 岐山县| 保康县| 双鸭山市| 承德县| 昭苏县| 汉寿县| 花莲县| 郸城县| 西和县| 涟水县| 驻马店市| 雷波县| 开远市| 天峻县| 曲周县| 锡林浩特市| 吴堡县| 墨竹工卡县| 吴桥县| 金塔县| 峨眉山市| 钟山县| 绩溪县| 乌兰察布市| 孝义市| 德令哈市| 松滋市| 柯坪县| 福泉市| 泰州市| 互助| 新兴县| 海门市| 合阳县| 木兰县| 枣阳市| 越西县| 元阳县|