バージョン

Convert メソッド (FormattableToStringConverter)

書式文字列として指定されたパラメーターを使用して指定の System.IFormattable 値を文字列へ変換します。
シンタックス
'宣言
 
Public Function Convert( _
   ByVal value As Object, _
   ByVal targetType As Type, _
   ByVal parameter As Object, _
   ByVal culture As CultureInfo _
) As Object
public object Convert( 
   object value,
   Type targetType,
   object parameter,
   CultureInfo culture
)

パラメータ

value
System.IFormattable を実装するオブジェクト
targetType
コンバーターが値を変換する必要がある型。パラメーターを使用しません。String 値が常に返されます
parameter
System.IFormattable.ToString(System.String,System.IFormatProvider) メソッドへ渡す書式文字列。
culture
System.IFormattable.ToString(System.String,System.IFormatProvider) を呼び出す時に IFormatProvider として使用するカルチャー。

戻り値の型

パラメーターが必要となる情報と一致しない場合、System.Windows.DependencyProperty.UnsetValue。そうでない場合は、System.IFormattable.ToString(System.String,System.IFormatProvider) メソッドを使用する値の文字列表現が返されます。
参照