Intersoft ClientUI Documentation
ConvertBack Method
See Also  Send Feedback
Intersoft.Client.Framework Namespace > IMultiValueConverter Interface : ConvertBack Method






value
The value that the binding target produces.
targetTypes
The array of types to convert to. The array length indicates the number and types of values that are suggested for the method to return.
parameter
The converter parameter to use.
culture
The culture to use in the converter.
Converts a binding target value to the source binding values.

Syntax

Visual Basic (Declaration) 
Function ConvertBack( _
   ByVal value As Object, _
   ByVal targetTypes() As Type, _
   ByVal parameter As Object, _
   ByVal culture As CultureInfo _
) As Object()
Visual Basic (Usage)Copy Code
Dim instance As IMultiValueConverter
Dim value As Object
Dim targetTypes() As Type
Dim parameter As Object
Dim culture As CultureInfo
Dim value() As Object
 
value = instance.ConvertBack(value, targetTypes, parameter, culture)
C# 
object[] ConvertBack( 
   object value,
   Type[] targetTypes,
   object parameter,
   CultureInfo culture
)
Delphi 
function ConvertBack( 
    value: TObject;
    targetTypes: Typearray of;
    parameter: TObject;
    culture: CultureInfo
): array of TObject; 
JScript 
function ConvertBack( 
   value : Object,
   targetTypes : Type[],
   parameter : Object,
   culture : CultureInfo
) : Object[];
Managed Extensions for C++ 
Object*[]* ConvertBack( 
   Object* value,
   Type*[]* targetTypes,
   Object* parameter,
   CultureInfo* culture
) 
C++/CLI 
array<Object^>^ ConvertBack( 
   Object^ value,
   array<Type^>^ targetTypes,
   Object^ parameter,
   CultureInfo^ culture
) 

Parameters

value
The value that the binding target produces.
targetTypes
The array of types to convert to. The array length indicates the number and types of values that are suggested for the method to return.
parameter
The converter parameter to use.
culture
The culture to use in the converter.

Return Value

An array of values that have been converted from the target value back to the source values.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.