Click or drag to resize

MultiValueConverterConvertBack Method

Converts a value.

Namespace:  TomsToolbox.Wpf.Converters
Assembly:  TomsToolbox.Wpf (in TomsToolbox.Wpf.dll)
Syntax
protected virtual Object?[] ConvertBack(
	Object value,
	Type?[]? targetTypes,
	Object? parameter,
	CultureInfo? culture
)

Parameters

value
Type: SystemObject
The value that is produced by the binding target.
targetTypes
Type: SystemType
The types 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.
Exceptions
ExceptionCondition
InvalidOperationExceptionConvertBack is not supported by this converter.
See Also