• <menu id="w2i4a"></menu>
  • logo Aspose.Words開(kāi)發(fā)者指南

    文檔首頁(yè)>>Aspose.Words開(kāi)發(fā)者指南>>Aspose.Words for .NET使用文檔教程(6):如何設(shè)置語(yǔ)言首選項(xiàng)和刪除個(gè)人信息

    Aspose.Words for .NET使用文檔教程(6):如何設(shè)置語(yǔ)言首選項(xiàng)和刪除個(gè)人信息


    Aspose.Words For .Net是一種高級(jí)Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務(wù)。API支持生成,修改,轉(zhuǎn)換,呈現(xiàn)和打印文檔,而無(wú)需在跨平臺(tái)應(yīng)用程序中直接使用Microsoft Word。此外,API支持所有流行的Word處理文件格式,并允許將Word文檔導(dǎo)出或轉(zhuǎn)換為固定布局文件格式和最常用的圖像/多媒體格式。

    【下載Aspose.Words for .NET最新試用版】

    設(shè)置語(yǔ)言首選項(xiàng)


    在MS Word中顯示文檔取決于在該文檔的默認(rèn)值中設(shè)置的語(yǔ)言。但是,如果沒(méi)有語(yǔ)言設(shè)置為默認(rèn)值,該怎么辦?在這種情況下,Word從“ 設(shè)置Office語(yǔ)言首選項(xiàng) ”對(duì)話(huà)框中獲取信息,例如,可以在Word 2016中的“文件 - >選項(xiàng) - >語(yǔ)言”菜單下找到。使用Aspose.Words,您可以設(shè)置語(yǔ)言首選項(xiàng)使用LanguagePreferences類(lèi)。

    下面的代碼示例顯示了如何將日語(yǔ)添加到編輯語(yǔ)言中:

    //文檔目錄的路徑。
    LoadOptions loadOptions = new LoadOptions();
    loadOptions.LanguagePreferences.AddEditingLanguage(EditingLanguage.Japanese);
    
    Document doc = new Document(dataDir + @"languagepreferences.docx", loadOptions);
    
    int localeIdFarEast = doc.Styles.DefaultFont.LocaleIdFarEast;
    if (localeIdFarEast == (int)EditingLanguage.Japanese)
        Console.WriteLine("The document either has no any FarEast language set in defaults or it was set to Japanese originally.");
    else
        Console.WriteLine("The document default FarEast language was set to another than Japanese language originally, so it is not overridden.");

    下面的代碼示例顯示如何將俄語(yǔ)設(shè)置為默認(rèn)編輯語(yǔ)言:

    //文檔目錄的路徑。
    LoadOptions loadOptions = new LoadOptions();
    
    loadOptions.LanguagePreferences.SetAsDefault(EditingLanguage.Russian);
    
    Document doc = new Document(dataDir + @"languagepreferences.docx", loadOptions);
    
    int localeId = doc.Styles.DefaultFont.LocaleId;
    if (localeId == (int)EditingLanguage.Russian)
        Console.WriteLine("The document either has no any language set in defaults or it was set to Russian originally.");
    else
        Console.WriteLine("The document default language was set to another than Russian language originally, so it is not overridden.");


    從文檔中刪除個(gè)人信息


    如果要與其他人共享Word文檔,可以刪除個(gè)人信息,例如作者姓名和公司。您可以使用Document.RemovePersonalInformation屬性設(shè)置標(biāo)志,指示Microsoft Word將在保存文檔時(shí)從注釋?zhuān)抻喓臀臋n屬性中刪除所有用戶(hù)信息。

    注意:在Aspose.Words中處理文檔時(shí),設(shè)置此選項(xiàng)實(shí)際上不會(huì)刪除個(gè)人信息,并且僅影響Microsoft Word行為。

    Document doc = new Document(dataDir + "Properties.doc");
    doc.RemovePersonalInformation = true;
    
    dataDir = dataDir + "RemovePersonalInformation_out.docx";
    doc.Save(dataDir);


    為你推薦:Aspose專(zhuān)題 - Aspose最新資源合集


    ASPOSE技術(shù)交流QQ群(642018183)已開(kāi)通,各類(lèi)資源及時(shí)分享,歡迎交流討論!

    慧都20萬(wàn)+用戶(hù)答謝惠,ASPOSE系列產(chǎn)品火熱促銷(xiāo)中,最高直降8萬(wàn)元!>>立即領(lǐng)取優(yōu)惠


    850X100.png

    掃碼咨詢(xún)


    添加微信 立即咨詢(xún)

    電話(huà)咨詢(xún)

    客服熱線(xiàn)
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();