Partilhar via


XmlMappedRange.Text A propriedade (sistema de 2007)

Obtém o texto para o XmlMappedRange controle.

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

Sintaxe

<BrowsableAttribute(False)> _
Public ReadOnly Property Text As Object

Dim instance As XmlMappedRange
Dim value As Object

value = instance.Text
[BrowsableAttribute(false)]
public Object Text { get; }

Valor de propriedade

Tipo: System.Object
O texto para o XmlMappedRange controle.

Exemplos

O seguinte código exemplo compara como a Text e Value2 propriedades são diferentes para células que contêm números formatados. Este exemplo de código assume que a planilha corrente contém uma XmlMappedRange chamada CustomerLastNameCell.

PrivateSub 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())
EndSub
privatevoid 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());
}

Permissões

Consulte também

Referência

XmlMappedRange Classe

Membros XmlMappedRange

Namespace Microsoft.Office.Tools.Excel