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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。