Converts a value to String.

Namespace: Dapfor.Wpf.Converters
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public Object Convert(
	Object value,
	Type targetType,
	Object parameter,
	CultureInfo culture
)
Visual Basic
Public Function Convert ( 
	value As Object,
	targetType As Type,
	parameter As Object,
	culture As CultureInfo
) As Object
Visual C++
public:
virtual Object^ Convert(
	Object^ value, 
	Type^ targetType, 
	Object^ parameter, 
	CultureInfo^ culture
) sealed
F#
abstract Convert : 
        value : Object * 
        targetType : Type * 
        parameter : Object * 
        culture : CultureInfo -> Object 
override Convert : 
        value : Object * 
        targetType : Type * 
        parameter : Object * 
        culture : CultureInfo -> Object 

Parameters

value
Type: System..::..Object
The value produced by the binding source.
targetType
Type: System..::..Type
The type of the binding target property.
parameter
Type: System..::..Object
The converter parameter to use.
culture
Type: System.Globalization..::..CultureInfo
The culture to use in the converter.

Return Value

Type: Object
A String as the result of string.Format(string,object) method call.

Implements

IValueConverter..::..Convert(Object, Type, Object, CultureInfo)

See Also