如何使用Aspose.Words for .NET设置语言首选项和删除个人信息?

Aspose.Words For .Net是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。此外,API支持所有流行的Word处理文件格式,并允许将Word文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

【下载Aspose.Words for .NET最新试用版】

设置语言首选项

在MS Word中显示文档取决于在该文档的默认值中设置的语言。但是,如果没有语言设置为默认值,该怎么办?在这种情况下,Word从“ 设置Office语言首选项 ”对话框中获取信息,例如,可以在Word 2016中的“文件 - >选项 - >语言”菜单下找到。使用Aspose.Words,您可以设置语言首选项使用LanguagePreferences类。

下面的代码示例显示了如何将日语添加到编辑语言中:

//文档目录的路径。
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." );

下面的代码示例显示如何将俄语设置为默认编辑语言:

//文档目录的路径。
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." );

 

从文档中删除个人信息

如果要与其他人共享Word文档,可以删除个人信息,例如作者姓名和公司。您可以使用Document.RemovePersonalInformation属性设置标志,指示Microsoft Word将在保存文档时从注释,修订和文档属性中删除所有用户信息。

注意:在Aspose.Words中处理文档时,设置此选项实际上不会删除个人信息,并且仅影响Microsoft Word行为。

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

 

为你推荐:Aspose专题 - Aspose最新资源合集


ASPOSE技术交流QQ群(642018183)已开通,各类资源及时分享,欢迎交流讨论!(扫描下方二维码加入群聊)

转载于:https://my.oschina.net/u/4087915/blog/3063854

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值