Share via


XmlMappedRange.FormulaR1C1Local Property (2007 System)

Gets or sets the formula for the XmlMappedRange control, 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 FormulaR1C1Local As Object
'Usage
Dim instance As XmlMappedRange 
Dim value As Object 

value = instance.FormulaR1C1Local

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

Property Value

Type: System.Object
The formula for the XmlMappedRange control, using R1C1-style notation in the language of the user.

Remarks

If the XmlMappedRange control contains a constant, this property returns that constant.

If the XmlMappedRange control is empty, this property returns an empty string.

If the XmlMappedRange control contains a formula, this property returns the formula as a string, in the same format in which it would be displayed in the formula bar (including the equal sign).

If you set the value or formula of an XmlMappedRange control to a date, Microsoft Office Excel checks to see whether that cell is already formatted with one of the date or time number formats. If not, the number format is changed to the default short date number format.

Examples

The following code example uses the FormulaR1C1Local property to set the value of an XmlMappedRange to equal the square root of cell A1, as specified using R1C1 notation. The formula is localized according to the language of the system it is run on. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerAddress1Cell with a corresponding schema element of type int.

Private Sub SetFormulaR1C1Local()
    Me.Range("A1").Value2 = 1185921
    Me.CustomerAddress1Cell.FormulaR1C1Local = "=SQRT(R1C1)" 
End Sub
private void SetFormulaR1C1Local()
{
    this.Range["A1", missing].Value2 = 1185921;
    this.CustomerAddress1Cell.FormulaR1C1Local = "=SQRT(R1C1)";
}

.NET Framework Security

See Also

Reference

XmlMappedRange Class

XmlMappedRange Members

Microsoft.Office.Tools.Excel Namespace