NamedRange.Precedents Property
Visual Studio 2012
Gets a Range that represents all the precedents of the NamedRange control.
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
This can be a multiple selection (a union of Range objects) if there is more than one precedent.
The following code example sets a reference in cell A2 to refer to cell A1, and then sets a reference in a NamedRange to refer to cell A2. The code example then uses the Precedents property to select the precedents of the NamedRange, which are cells A1 and A2.
This example is for a document-level customization.
Microsoft.Office.Tools.Excel.NamedRange precedentsRange; private void SelectPrecedents() { precedentsRange = this.Controls.AddNamedRange( this.Range["C1"], "precedentsRange"); this.Range["A1"].Value2 = "1710"; this.Range["A2"].Value2 = "=A1"; this.precedentsRange.Value2 = "=A2"; this.precedentsRange.Precedents.Select(); }
- 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.