Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the name of 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 Property Name As String
Get
Set
public string Name { get; set; }
Property Value
Type: System.String
The name of the worksheet.
Remarks
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.