WorksheetBase.MailEnvelope Property

Gets an e-mail header for the worksheet.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntax

'Declaration
Public ReadOnly Property MailEnvelope As MsoEnvelope
    Get
public MsoEnvelope MailEnvelope { get; }

Property Value

Type: Microsoft.Office.Core.MsoEnvelope
An e-mail header for the worksheet.

Examples

The following code example uses the MailEnvelope property to assign the Name of the worksheet to the introduction of an e-mail header for the worksheet.

This example is for a document-level customization.

Private Sub SetMailEnvelopeIntro()
    Me.MailEnvelope.Introduction = _
        "This is worksheet " & Me.Name
    MsgBox("The MailEnvelope introduction is: " & _
        Me.MailEnvelope.Introduction)
End Sub
private void SetMailEnvelopeIntro()
{
    this.MailEnvelope.Introduction = "This is worksheet " + this.Name;
    MessageBox.Show("The MailEnvelope introduction is: " +
        this.MailEnvelope.Introduction);
}

.NET Framework Security

See Also

Reference

WorksheetBase Class

Microsoft.Office.Tools.Excel Namespace