Share via


NamedRange.RefersToR1C1Local Property (2007 System)

Gets or sets the formula that the NamedRange control is defined to refer to, using R1C1-style notation in the language of the user.

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

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public Property RefersToR1C1Local As String
'Usage
Dim instance As NamedRange 
Dim value As String 

value = instance.RefersToR1C1Local

instance.RefersToR1C1Local = value
[BrowsableAttribute(false)]
public string RefersToR1C1Local { get; set; }
[BrowsableAttribute(false)]
public:
property String^ RefersToR1C1Local {
    String^ get ();
    void set (String^ value);
}
public function get RefersToR1C1Local () : String 
public function set RefersToR1C1Local (value : String)

Property Value

Type: System.String
The formula that the NamedRange control is defined to refer to. The formula uses R1C1-style notation in the language of the user, and begins with an equal sign.

Remarks

Use the RefersToR1C1Local property to change the range that a NamedRange control refers to.

Examples

The following code example creates a NamedRange and displays the formula for the NamedRange in the language of the user. It then assigns a new cell to the NamedRange and displays the new formula.

This example is for a document-level customization.

Private refersToR1C1LocalRange As Microsoft.Office.Tools.Excel.NamedRange

Private Sub DisplayFormulaR1C1Local()
    refersToR1C1LocalRange = Me.Controls.AddNamedRange( _
        Me.Range("C1", "D2"), "refersToR1C1LocalRange")
    MessageBox.Show(refersToR1C1LocalRange.RefersTo)
    refersToR1C1LocalRange.RefersTo = "=Sheet1!$C$3"
    refersToR1C1LocalRange.Select()
    MessageBox.Show(refersToR1C1LocalRange.RefersTo)
End Sub
Microsoft.Office.Tools.Excel.NamedRange refersToR1C1LocalRange;
private void DisplayFormulaR1C1Local()
{
    refersToR1C1LocalRange = this.Controls.AddNamedRange(
         this.Range["C1", "D2"], "refersToR1C1LocalRange");
    MessageBox.Show(refersToR1C1LocalRange.RefersTo);
    refersToR1C1LocalRange.RefersTo = "=Sheet1!$C$3";
    refersToR1C1LocalRange.Select();
    MessageBox.Show(refersToR1C1LocalRange.RefersTo);
}

.NET Framework Security

See Also

Reference

NamedRange Class

NamedRange Members

Microsoft.Office.Tools.Excel Namespace