Metodo DocumentBase.ApplyDocumentTheme

Applica un tema a un documento.

Spazio dei nomi:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Sintassi

'Dichiarazione
Public Sub ApplyDocumentTheme ( _
    fileName As String _
)
public void ApplyDocumentTheme(
    string fileName
)

Parametri

  • fileName
    Tipo: System.String
    Percorso completo del tema da applicare.

Esempi

Nell'esempio di codice riportato di seguito viene illustrato come passare dal tema del documento al tema Foundry. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.

Private Sub SwitchToFoundryTheme()
    Me.ApplyDocumentTheme("C:\Program Files\Microsoft Office\" + _
                          "Document Themes 12\Foundry.thmx")
End Sub
private void SwitchToFoundryTheme()
{
    this.ApplyDocumentTheme(@"C:\Program Files\Microsoft Office\" + 
                      @"Document Themes 12\Foundry.thmx");
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

DocumentBase Classe

Spazio dei nomi Microsoft.Office.Tools.Word