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.Xaml.Calendar
Assembly:  C1.Xaml.Calendar (in C1.Xaml.Calendar.dll)

Syntax

C#
public Object ConvertBack(
	Object value,
	Type targetType,
	Object parameter,
	string language
)
Visual Basic
Public Function ConvertBack ( _
	value As Object, _
	targetType As Type, _
	parameter As Object, _
	language As String _
) As 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.
language
Type: System..::..String
The language to use in the converter.

Return Value

A converted value.

See Also