DocumentBase.OpenEncoding 属性
获取用于打开文档的编码。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property OpenEncoding As MsoEncoding
public MsoEncoding OpenEncoding { get; }
属性值
类型:Microsoft.Office.Core.MsoEncoding
MsoEncoding 值之一。
示例
下面的代码示例检查该文档是否为 UTF7 编码文档并显示一条包含结果的消息。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentOpenEncoding()
If Me.OpenEncoding = Microsoft.Office.Core.MsoEncoding.msoEncodingUTF7 Then
MessageBox.Show("This is a UTF7-encoded text file!")
Else
MessageBox.Show("This is not a UTF7-encoded text file!")
End If
End Sub
private void DocumentOpenEncoding()
{
if (this.OpenEncoding == Microsoft.Office.Core.MsoEncoding.msoEncodingUTF7)
{
MessageBox.Show("This is a UTF7-encoded text file!");
}
else
{
MessageBox.Show("This is not a UTF7-encoded text file!");
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。