DocumentBase.WebOptions 属性

获取一个 WebOptions 对象,该对象包含在您将文档另存为网页或者打开网页时,Microsoft Office Word 使用的文档级特性。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public ReadOnly Property WebOptions As WebOptions
public WebOptions WebOptions { get; }

属性值

类型:Microsoft.Office.Interop.Word.WebOptions
一个 WebOptions 对象,该对象包含在您将文档另存为网页或者打开网页时,Microsoft Office Word 使用的文档级特性。

示例

下面的代码示例指定在将活动文档中的项保存为网页时使用的级联样式表和西欧文档编码。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentWebOptions()
    Me.WebOptions.RelyOnCSS = True
    Me.WebOptions.Encoding = Office.MsoEncoding.msoEncodingWestern
End Sub 
private void DocumentWebOptions()
{
    this.WebOptions.RelyOnCSS = true;
    this.WebOptions.Encoding = Office.MsoEncoding.msoEncodingWestern;
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间