Converts a value. The data binding engine calls this method when it propagates a value from the binding target to the binding source.

Namespace:  C1.WPF.C1Schedule
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
public Object[] ConvertBack(
	Object value,
	Type[] targetTypes,
	Object parameter,
	CultureInfo culture
)
Visual Basic (Declaration)
Public Function ConvertBack ( _
	value As Object, _
	targetTypes As Type(), _
	parameter As Object, _
	culture As CultureInfo _
) As Object()

Parameters

value
Type: System..::..Object
The value that is produced by the binding target.
targetTypes
Type: array<System..::..Type>[]()[][]
The array of types 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

A converted array of values.

Implements

IMultiValueConverter..::..ConvertBack(Object, array<Type>[]()[][], Object, CultureInfo)

See Also