PermilleFormatter.Format Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
Format(Double) |
Gibt eine Zeichenfolgendarstellung einer Double-Promille zurück. |
Format(Int64) |
Gibt eine Zeichenfolgendarstellung einer Int64-Promille zurück. |
Format(UInt64) |
Gibt eine Zeichenfolgendarstellung einer UInt64-Promille zurück. |
Format(Double)
Gibt eine Zeichenfolgendarstellung einer Double-Promille zurück.
public:
virtual Platform::String ^ Format(double value) = Format;
/// [Windows.Foundation.Metadata.DefaultOverload]
/// [Windows.Foundation.Metadata.Overload("FormatDouble")]
winrt::hstring Format(double const& value);
[Windows.Foundation.Metadata.DefaultOverload]
[Windows.Foundation.Metadata.Overload("FormatDouble")]
public string Format(double value);
function format(value)
Public Function Format (value As Double) As String
Parameter
- value
-
Double
double
Der double-Wert, der formatiert werden soll.
Gibt zurück
Eine Zeichenfolge, die die Promille darstellt.
Implementiert
- Attribute
Weitere Informationen
Gilt für:
Format(Int64)
Gibt eine Zeichenfolgendarstellung einer Int64-Promille zurück.
public:
virtual Platform::String ^ Format(long long value) = Format;
/// [Windows.Foundation.Metadata.Overload("FormatInt")]
winrt::hstring Format(long const& value);
[Windows.Foundation.Metadata.Overload("FormatInt")]
public string Format(long value);
function format(value)
Public Function Format (value As Long) As String
Parameter
- value
-
Int64
long long
long
Der zu formatierte Int64-Wert .
Gibt zurück
Eine Zeichenfolge, die die Promille darstellt.
Implementiert
- Attribute
Weitere Informationen
Gilt für:
Format(UInt64)
Gibt eine Zeichenfolgendarstellung einer UInt64-Promille zurück.
public:
virtual Platform::String ^ Format(unsigned long long value) = Format;
/// [Windows.Foundation.Metadata.Overload("FormatUInt")]
winrt::hstring Format(uint64_t const& value);
[Windows.Foundation.Metadata.Overload("FormatUInt")]
public string Format(ulong value);
function format(value)
Public Function Format (value As ULong) As String
Parameter
- value
-
UInt64
unsigned long long
uint64_t
Der zu formatierte UInt64-Wert .
Gibt zurück
Eine Zeichenfolge, die die Promille darstellt.
Implementiert
- Attribute