DocumentBase.TextEncoding 属性
获取或设置 Microsoft Office Word 在另存为编码文本文件的文档中使用的代码页或字符集。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public Property TextEncoding As MsoEncoding
public MsoEncoding TextEncoding { get; set; }
属性值
类型:Microsoft.Office.Core.MsoEncoding
MsoEncoding 值之一。
备注
此属性将文本编码和 HTML 编码分开设置,后者可通过使用 WebOptions 对象的 Encoding 属性进行设置。 可以从 WebOptions 属性获取 WebOptions 对象。 若要为所有另存为文本文件的文档设置文本编码,请使用 DefaultTextEncoding 属性。
示例
下面的代码示例将另存为文本文件的文档的编码设置为“西欧”。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentTextEncoding()
Me.TextEncoding = Office.MsoEncoding.msoEncodingWestern
End Sub
private void DocumentTextEncoding()
{
this.TextEncoding = Office.MsoEncoding.msoEncodingWestern;
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。