Class MergeCollectionsConverter
Used for System.Collections.ICollection collections merging.
Inheritance
System.Object
MergeCollectionsConverter
Implements
System.Windows.Data.IMultiValueConverter
Namespace: Syncfusion.Windows.Tools
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class MergeCollectionsConverter : Object, IMultiValueConverter
Constructors
MergeCollectionsConverter()
Declaration
public MergeCollectionsConverter()
Methods
Convert(Object[], Type, Object, CultureInfo)
Merges System.Collections.ICollection collections into one collection.
Declaration
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
System.Object[] | values | Collections which should be merged. |
System.Type | targetType | Type of the merged collection. |
System.Object | parameter | Parameter is not used. |
System.Globalization.CultureInfo | culture | Culture is not used. |
Returns
Type | Description |
---|---|
System.Object | Merged collection. |
ConvertBack(Object, Type[], Object, CultureInfo)
This method is not used.
Declaration
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The value that the binding target produces. |
System.Type[] | 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. |
System.Object | parameter | The converter parameter to use. |
System.Globalization.CultureInfo | culture | The culture to use in the converter. |
Returns
Type | Description |
---|---|
System.Object[] | An array of values that have been converted from the target value back to the source values. |
Implements
System.Windows.Data.IMultiValueConverter