Converts a boolean to a value of the type specified through the targetType parameter.

ConvertBack(Object, Type, Object, System.Globalization.CultureInfo)

public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture);

Parameters

Parameter Description
value The boolean value that is produced by the binding target.
targetType The type to convert to.
parameter The converter parameter to use. It must be a string representation of the value to return. If value is true this value is returned. If value is false, DependencyProperty.UnsetValue is returned.
culture The culture to use in the converter.

Return Value

The converted value. The method returns DependencyProperty.UnsetValue, if the conversion is not possible or if value is false.