Condividi tramite


Proprietà DocumentBase.MailEnvelope

Ottiene un oggetto MsoEnvelope che rappresenta l'intestazione di un messaggio di posta elettronica per 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 ReadOnly Property MailEnvelope As MsoEnvelope
    Get
public MsoEnvelope MailEnvelope { get; }

Valore proprietà

Tipo: Microsoft.Office.Core.MsoEnvelope
Oggetto MsoEnvelope che rappresenta l'intestazione di un messaggio di posta elettronica per un documento.

Esempi

Nell'esempio di codice riportato di seguito viene illustrato come aggiungere testo all'intestazione del messaggio di posta elettronica di un documento e come visualizzare l'intestazione. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.

Private Sub DocumentMailEnvelope()
    Me.MailEnvelope.Introduction = "Please review " & _
        "this document and let me know what you think."
    Me.ActiveWindow.EnvelopeVisible = True
End Sub 
private void DocumentMailEnvelope()
{
    this.MailEnvelope.Introduction = "Please review " +
    "this document and let me know what you think.";
    this.ActiveWindow.EnvelopeVisible = true;

}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

DocumentBase Classe

Spazio dei nomi Microsoft.Office.Tools.Word