Compartir a través de


XmlMappedRange.Value2 (Propiedad) (2007 System)

Actualización: noviembre 2007

Obtiene o establece el valor del control XmlMappedRange.

Espacio de nombres:  Microsoft.Office.Tools.Excel
Ensamblado:  Microsoft.Office.Tools.Excel.v9.0 (en Microsoft.Office.Tools.Excel.v9.0.dll)

Sintaxis

<TypeConverterAttribute(GetType(StringConverter))> _
Public Property Value2 As Object

Dim instance As XmlMappedRange
Dim value As Object

value = instance.Value2

instance.Value2 = value
[TypeConverterAttribute(typeof(StringConverter))]
public Object Value2 { get; set; }

Valor de propiedad

Tipo: System.Object

Valor del control XmlMappedRange.

Comentarios

La diferencia entre esta propiedad y la propiedad Value es que Value2 no es una propiedad parametrizada.

Ejemplos

En el siguiente ejemplo de código se compara cómo difieren las propiedades Text y Value para celdas que contienen números con formato. En este ejemplo de código se supone que la hoja de cálculo actual contiene un control XmlMappedRange denominado CustomerLastNameCell.

Private Sub CompareTextAndValue2()
    Me.CustomerAddress1Cell.Value2 = 1198.3
    Me.CustomerAddress1Cell.NumberFormat = "$#,##0"

    ' Displays "1198.3".
    MsgBox("The Value2 value is: " & Me.CustomerAddress1Cell.Value2.ToString())

    ' Displays "$1,198".
    MsgBox("The Text value is: " & Me.CustomerAddress1Cell.Text.ToString())
End Sub
private void CompareTextAndValue2()
{
    this.CustomerAddress1Cell.Value2 = 1198.3;
    this.CustomerAddress1Cell.NumberFormat = "$#,##0";

    // Displays "1198.3".
    MessageBox.Show("The Value2 value is: " + 
        this.CustomerAddress1Cell.Value2.ToString());

    // Displays "$1,198".
    MessageBox.Show("The Text value is: " +
        this.CustomerAddress1Cell.Text.ToString());
}

Permisos

Vea también

Referencia

XmlMappedRange (Clase)

XmlMappedRange (Miembros)

Microsoft.Office.Tools.Excel (Espacio de nombres)