'Declaration Public Function ConvertBack( _ ByVal targetValue As Object, _ ByVal sourceType As Type, _ ByVal parameter As Object, _ ByVal targetCulture As CultureInfo _ ) As Object
'Usage Dim instance As SourceDataConverter Dim targetValue As Object Dim sourceType As Type Dim parameter As Object Dim targetCulture As CultureInfo Dim value As Object value = instance.ConvertBack(targetValue, sourceType, parameter, targetCulture)
public object ConvertBack( object targetValue, Type sourceType, object parameter, CultureInfo targetCulture )
Parameters
- targetValue
- The target value.
- sourceType
- The Type to which to convert targetValue.
- parameter
- targetCulture
- The CultureInfo to use when converting the value.
Return Value
The converted value.