Modifies the target data before passing it to the source object. This method is called only in TwoWay bindings.

Namespace: Ico.WPF.Specialized.DataGridControl.Converters
Assembly: IcoWPFSpecialized (in IcoWPFSpecialized.dll) Version: 10.97.212.0 (10.97.212.00)

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
JScript
public final function ConvertBack(
	value : Object, 
	targetType : Type, 
	parameter : Object, 
	culture : CultureInfo
) : Object

Parameters

value
Type: System..::..Object
The target data being passed to the source.
targetType
Type: System..::..Type
The type of the target property, specified by a helper structure that wraps the type name.
parameter
Type: System..::..Object
An optional parameter to be used in the converter logic.
culture
Type: System.Globalization..::..CultureInfo
The culture of the conversion.

Return Value

The value to be passed to the source object.

Implements

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

Exceptions

ExceptionCondition
System..::..NotSupportedException

See Also