DocumentBase.ActiveThemeDisplayName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the display name of the active theme for the document.
public:
property System::String ^ ActiveThemeDisplayName { System::String ^ get(); };
public string ActiveThemeDisplayName { get; }
member this.ActiveThemeDisplayName : string
Public ReadOnly Property ActiveThemeDisplayName As String
Property Value
The display name of the active theme for the document.
Examples
The following code example applies a theme called Afternoon to the document and then displays a message that shows the name of the active theme. To use this example, run it from the ThisDocument
class in a document-level project.
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 + ".");
}
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
Remarks
This property returns "none" if the document does not have an active theme.
A theme's display name is the name that appears in the Theme dialog box. This name might not correspond to the string you would use to set a default theme or to apply a theme to a document.