DocumentBase.ActiveThemeDisplayName 属性

获取文档的活动主题的显示名称。

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

语法

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

属性值

类型:System.String
文档的活动主题的显示名称。

备注

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

主题的显示名称是出现在**“主题”**对话框中的名称。 此名称可能不与用来设置默认主题或对文档应用主题的字符串对应。

示例

下面的代码示例对文档应用一个名为 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 命名空间