XmlMappedRange.NumberFormatLocal – vlastnost
Získá nebo nastaví kód formátu XmlMappedRange řízení v jazyku uživatele.
Obor názvů: Microsoft.Office.Tools.Excel
Sestavení: Microsoft.Office.Tools.Excel (v Microsoft.Office.Tools.Excel.dll)
Syntaxe
'Deklarace
Property NumberFormatLocal As Object
Get
Set
Object NumberFormatLocal { get; set; }
Hodnota vlastnosti
Typ: System.Object
Kód formátu XmlMappedRange řízení v jazyku uživatele.
Poznámky
Formatfunkce používá jiný formát řetězce kódu než NumberFormat a NumberFormatLocal Vlastnosti.
Příklady
Následující kód například použití NumberFormat vlastnost řetězce formátu data v XmlMappedRange. Příklad používá také NumberFormatLocal vlastností zobrazení formátu data v jazyku uživatele. Tento kód příklad předpokládá, že obsahuje aktuální list XmlMappedRange s názvem 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());
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.