Click or drag to resize

MultiValueConverterConvertBack Method

Converts a value.

Namespace: TomsToolbox.Wpf.Converters
Assembly: TomsToolbox.Wpf (in TomsToolbox.Wpf.dll) Version: 2.21.0+44d18b541fc9419ec3c549350a832394661b2a4d
XMLNS for XAML: Not mapped to an xmlns.
Syntax
protected virtual Object?[] ConvertBack(
	Object value,
	Type?[]? targetTypes,
	Object? parameter,
	CultureInfo? culture
)

Parameters

value  Object
The value that is produced by the binding target.
targetTypes  Type
The types to convert to.
parameter  Object
The converter parameter to use.
culture  CultureInfo
The culture to use in the converter.

Return Value

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