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

Namespace:  C1.Xaml.Calendar
Assembly:  C1.Xaml.Calendar (in C1.Xaml.Calendar.dll)

Syntax

C#
public Object Convert(
	Object value,
	Type targetType,
	Object parameter,
	string language
)
Visual Basic
Public Function Convert ( _
	value As Object, _
	targetType As Type, _
	parameter As Object, _
	language As String _
) As Object

Parameters

value
Type: System..::..Object
The value produced by the binding source.
targetType
Type: System..::..Type
The type of the binding target property.
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