バージョン

CalcDefaultCurrencyMask(IFormatProvider,Int32,Int32,Char) メソッド

CultureInfoに基づいて通貨用のデフォルトマスクを計算します。
シンタックス
'宣言
 
Public Overloads Shared Function CalcDefaultCurrencyMask( _
   ByVal formatProvider As IFormatProvider, _
   ByVal integerDigits As Integer, _
   ByVal fractionDigits As Integer, _
   ByVal allowNegatives As Char _
) As String
public static string CalcDefaultCurrencyMask( 
   IFormatProvider formatProvider,
   int integerDigits,
   int fractionDigits,
   char allowNegatives
)

パラメータ

formatProvider
デフォルトマスクの作成に使用する書式プロバイダー。CultureInfoまたはNumberFormatInfoを指定できます。
integerDigits
整数部の桁数。-1は、デフォルトを使用することを示します。0を指定すると整数部がなくなります。
fractionDigits
小数部の桁数。-1は、カルチャ情報によって指定された桁数を使用することを示します。0を指定すると小数部がなくなります。
allowNegatives
"-"または"+"を指定した場合、負の数が許可されます。"-"を指定すると、数が負の場合のみ、マイナス記号が表示されます。"+"を指定すると、数が正か負かに応じて、常にプラス記号またはマイナス記号が表示されます。他の文字をこのパラメーターに指定した場合は無視されます。

戻り値の型

デフォルトの通貨マスクを表す文字列。
参照