INumberFormatter.Format メソッド

定義

オーバーロード

Format(Double)

Double 値の文字列表現を返します。

Format(Int64)

Int64 値の文字列表現を返します。

Format(UInt64)

UInt64 値の文字列表現を返します。

Format(Double)

Double 値の文字列表現を返します。

public:
 Platform::String ^ Format(double value);
/// [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

パラメーター

value
Double

double

書式設定する Double 値。

戻り値

String

Platform::String

winrt::hstring

値を表す文字列。

属性

こちらもご覧ください

適用対象

Format(Int64)

Int64 値の文字列表現を返します。

public:
 Platform::String ^ Format(long long value);
/// [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

パラメーター

value
Int64

long long

long

書式設定する Int64 値。

戻り値

String

Platform::String

winrt::hstring

値を表す文字列。

属性

こちらもご覧ください

適用対象

Format(UInt64)

UInt64 値の文字列表現を返します。

public:
 Platform::String ^ Format(unsigned long long value);
/// [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

パラメーター

value
UInt64

unsigned long long

uint64_t

書式設定する UInt64 値。

戻り値

String

Platform::String

winrt::hstring

値を表す文字列。

属性

こちらもご覧ください

適用対象