DocumentBase.ActiveTheme 属性

获取文档的活动主题名称以及主题格式设置选项。

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

语法

声明
Public ReadOnly Property ActiveTheme As String
public string ActiveTheme { get; }

属性值

类型:System.String
文档的活动主题名称以及主题格式设置选项。

备注

如果文档没有活动主题,则此属性返回“none”。

有关此属性所返回值的说明,请参见 ApplyTheme 方法的 Name 参数。 此属性返回的值可能不与主题的显示名称相对应。 若要返回主题的显示名称,请使用 ActiveThemeDisplayName 属性。

示例

下面的代码示例对文档应用一个名为 Afternoon 的主题,然后显示一条包含活动主题名称的消息。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

    Private Sub DocumentActiveTheme()
        Me.ApplyTheme("AFTRNOON 011")
        MessageBox.Show("The " & Me.ActiveTheme.ToString() & " theme has been" _
            & " applied to this document." & vbLf & "The display name is " _
            & Me.ActiveThemeDisplayName & ".")
    End Sub

private void DocumentActiveTheme()
{
    this.ApplyTheme("AFTRNOON 011");
    MessageBox.Show ("The " + this.ActiveTheme.ToString() + " theme has been"
        + " applied to this document." + "\n" + "The display name is " 
        + this.ActiveThemeDisplayName + ".");
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间