Udostępnij za pośrednictwem


Właściwość XmlMappedRange.NumberFormat —

Pobiera lub ustawia kod formatu dla XmlMappedRange kontroli.

Przestrzeń nazw:  Microsoft.Office.Tools.Excel
Zestaw:  Microsoft.Office.Tools.Excel (w Microsoft.Office.Tools.Excel.dll)

Składnia

'Deklaracja
Property NumberFormat As Object
Object NumberFormat { get; set; }

Wartość właściwości

Typ: System.Object
Kod formatu dla XmlMappedRange kontroli.

Uwagi

Właściwość ta zwraca nullodwołanie o wartości null (Nothing w języku Visual Basic) Jeśli wszystkich komórek w XmlMappedRange formant ma ten sam format liczbowy.

Kod formatu jest to ten sam jako Kody formatów dostępna w opcji Formatowanie komórek okno dialogowe.Format Funkcja używa ciągi kodów inny format niż NumberFormat i NumberFormatLocal właściwości.

Przykłady

Następujący kod w przykładzie wykorzystano NumberFormat właściwość, aby format Data ciągi w XmlMappedRange.W przykładzie użyto również NumberFormatLocal właściwość, aby wyświetlić format daty w języku użytkownika.W tym przykładzie kodu zakłada, że zawiera bieżący arkusz XmlMappedRange o nazwie CustomerDateCell.

Private Sub ApplyNumberFormatting()
    Me.CustomerDateCell.Value2 = "4-Apr-1974"
    Me.CustomerDateCell.NumberFormat = "m/d/yyyy"

    ' Display the number format in the language of the user.
    MsgBox("The number format for CustomerDateCell is: " & _
        Me.CustomerDateCell.NumberFormatLocal.ToString())
End Sub
private void ApplyNumberFormatting()
{
    this.CustomerDateCell.Value2 = "4-Apr-1974";
    this.CustomerDateCell.NumberFormat = "m/d/yyyy";

    // Display the number format in the language of the user.
    MessageBox.Show("The number format for CustomerDateCell is: " +
        this.CustomerDateCell.NumberFormatLocal.ToString());
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

XmlMappedRange Interfejs

Przestrzeń nazw Microsoft.Office.Tools.Excel