NamedRange.DirectDependents Property

Definition

Gets a Range that represents the range containing all the direct dependents of the NamedRange control.

public Microsoft.Office.Interop.Excel.Range DirectDependents { get; }

Property Value

A Range that represents the range containing all the direct dependents of the NamedRange control.

Examples

The following code example creates a NamedRange and sets a reference in cell C1 to refer to the NamedRange. It then sets a reference in cell C2 to refer to cell C1. The code example then uses the DirectDependents property to select the direct dependent of the NamedRange, which is cell C1.

This example is for a document-level customization.

Microsoft.Office.Tools.Excel.NamedRange directDependentsRange;
private void SelectDirectDependents()
{
    directDependentsRange = this.Controls.AddNamedRange(
        this.Range["B1"], "createMonthRange");
    this.directDependentsRange.Value2 = "Smith";
    this.Range["C1"].Value2 = "=" +
        this.directDependentsRange.Address[false, true,
        Excel.XlReferenceStyle.xlA1, false];

    this.Range["C2"].Value2 = "=C1";
    this.directDependentsRange.DirectDependents.Select();
}

Remarks

This property only works on the active sheet and cannot trace remote references.

Applies to

Product Versions
Visual Studio Tools for Office 2017, 2019, 2022