Worksheet.MailEnvelope Property (2007 System)
Gets an e-mail header for the worksheet.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property MailEnvelope As MsoEnvelope
'Usage
Dim instance As Worksheet
Dim value As MsoEnvelope
value = instance.MailEnvelope
[BrowsableAttribute(false)]
public MsoEnvelope MailEnvelope { get; }
[BrowsableAttribute(false)]
public:
property MsoEnvelope^ MailEnvelope {
MsoEnvelope^ get ();
}
public function get MailEnvelope () : MsoEnvelope
Property Value
Type: 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.