亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
常州市| 阳谷县| 林周县| 鄂州市| 广南县| 龙州县| 新巴尔虎右旗| 临安市| 辉南县| 仁寿县| 南涧| 天镇县| 宜黄县| 搜索| 青铜峡市| 鄂托克前旗| 黄骅市| 宜章县| 于田县| 肃南| 青神县| 林周县| 康马县| 灵丘县| 湘乡市| 乌拉特后旗| 静安区| 东至县| 九龙城区| 乌兰县| 霍山县| 安新县| 道孚县| 绥棱县| 若尔盖县| 赤城县| 衡阳县| 凤山市| 蒙阴县| 长武县| 寻甸|