System.Windows.Controls.TypeToVisibilityConverter.ConvertBack C# (CSharp) Method

ConvertBack() public method

Converts a visibility value back to a type.
public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object The value that is to be converted.
targetType Type The type to which the value is to be converted. In this case it is type.
parameter object A parameter whose enum value is returned.
culture System.Globalization.CultureInfo The culture information of the current culture, so that parsing can be adjusted to cultural conventions.
return object
        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
TypeToVisibilityConverter