NamedRange.Parent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the parent object of the NamedRange control.
public:
property System::Object ^ Parent { System::Object ^ get(); };
public object Parent { get; }
member this.Parent : obj
Public ReadOnly Property Parent As Object
Property Value
The parent object of the NamedRange control.
Examples
The following code example creates a NamedRange and then uses the Parent property to display the name of the parent Worksheet of the NamedRange.
This example is for a document-level customization.
Microsoft.Office.Tools.Excel.NamedRange parentNameRange;
private void DisplayParentName()
{
parentNameRange = this.Controls.AddNamedRange(
this.Range["B2"], "parentNameRange");
parentNameRange.Select();
Excel.Worksheet parentSheet =
(Excel.Worksheet)this.parentNameRange.Parent;
MessageBox.Show("The NamedRange is in worksheet: " +
parentSheet.Name);
}
Private parentNameRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub DisplayParentName()
parentNameRange = Me.Controls.AddNamedRange( _
Me.Range("B2"), "parentNameRange")
parentNameRange.Select()
Dim parentSheet As Excel.Worksheet = _
CType(Me.parentNameRange.Parent, Excel.Worksheet)
MessageBox.Show("The NamedRange is in worksheet: " & _
parentSheet.Name)
End Sub