Właściwość XmlMappedRange.NumberFormatLocal —
Pobiera lub ustawia kod formatu dla XmlMappedRange kontroli w języku użytkownika.
Przestrzeń nazw: Microsoft.Office.Tools.Excel
Zestaw: Microsoft.Office.Tools.Excel (w Microsoft.Office.Tools.Excel.dll)
Składnia
'Deklaracja
Property NumberFormatLocal As Object
Object NumberFormatLocal { get; set; }
Wartość właściwości
Typ: System.Object
Kod formatu dla XmlMappedRange kontroli w języku użytkownika.
Uwagi
Format Funkcja używa ciągów kod 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 ciągi formatu daty w XmlMappedRange.W przykładzie użyto również NumberFormatLocal właściwość, aby wyświetlić żądany format daty w języku użytkownika.W tym przykładzie kodu zakłada, że bieżący arkusz zawiera 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
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.