Share via


Worksheet.Name Property (2007 System)

Gets or sets the name of the worksheet.

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

Syntax

'Declaration
Public Property Name As String
'Usage
Dim instance As Worksheet 
Dim value As String 

value = instance.Name

instance.Name = value
public string Name { get; set; }
public:
property String^ Name {
    String^ get ();
    void set (String^ value);
}
public function get Name () : String 
public function set Name (value : String)

Property Value

Type: System.String
The name of 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

Worksheet Class

Worksheet Members

Microsoft.Office.Tools.Excel Namespace