Click or drag to resize

ValueConverterBaseConvertBack Method

Converts a value.

Namespace:  Cauldron.XAML
Assembly:  Cauldron.Win32.WPF (in Cauldron.Win32.WPF.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public Object ConvertBack(
	Object value,
	Type targetType,
	Object parameter,
	CultureInfo culture
)

Parameters

value
Type: SystemObject
The value that is produced by the binding target.
targetType
Type: SystemType
The type to convert to.
parameter
Type: SystemObject
The converter parameter to use.
culture
Type: System.GlobalizationCultureInfo
The culture to use in the converter.

Return Value

Type: Object
A converted value.If the method returns null, the valid null value is used.

Implements

IValueConverterConvertBack(Object, Type, Object, CultureInfo)
Exceptions
ExceptionCondition
NotImplementedExceptionAlways throws NotImplementedException. This method is not implemented.
See Also