Converts a value from String to Double type.

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

Syntax

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

Parameters

value
Type: System..::..Object
The value that is produced by the binding target.
targetType
Type: System..::..Type
The type to convert to.
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 converted Double value.

Implements

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

See Also