NamedRange.Worksheet Property

Gets a Worksheet that represents the worksheet that contains the NamedRange control.

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

Syntax

'Declaration
ReadOnly Property Worksheet As Worksheet
Worksheet Worksheet { get; }

Property Value

Type: Worksheet
A Worksheet that represents the worksheet that contains the NamedRange control.

Examples

The following code example displays the name of the worksheet that contains a NamedRange.

This example is for a document-level customization.

Private Sub DisplayWorksheetName()
        Dim namedRange1 As Microsoft.Office.Tools.Excel.NamedRange _
            = Me.Controls.AddNamedRange(Me.Range("A1"), _
            "namedRange1")
        namedRange1.Worksheet.Name = "Sales"
        MessageBox.Show("The NamedRange is on worksheet " & _
            namedRange1.Worksheet.Name)
    End Sub
private void DisplayWorksheetName()
{
    Microsoft.Office.Tools.Excel.NamedRange namedRange1 =
        this.Controls.AddNamedRange(this.Range["A1"],
        "namedRange1");
    namedRange1.Worksheet.Name = "Sales";
    MessageBox.Show("The NamedRange is on worksheet " +
        namedRange1.Worksheet.Name);
}

.NET Framework Security

See Also

Reference

NamedRange Interface

Microsoft.Office.Tools.Excel Namespace