Class MultiVariableExpressionConverter
Use this IMultiValueConverter instance to convert a set of values into a result using a formula.
Inheritance
System.Object
MultiVariableExpressionConverter
Implements
System.Windows.Data.IMultiValueConverter
Namespace: Syncfusion.Windows.Calculate
Assembly: Syncfusion.Calculate.WPF.dll
Syntax
public class MultiVariableExpressionConverter : Object, IMultiValueConverter
Remarks
Note that the first value should be referred to as "[a]" in the formula, the 2nd value as "[b]" and so on.
</TextBox.Text>
Constructors
MultiVariableExpressionConverter()
Declaration
public MultiVariableExpressionConverter()
Methods
Convert(Object[], Type, Object, CultureInfo)
Used to convert the values.
Declaration
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
System.Object[] | values | object value. |
System.Type | targetType | type of target |
System.Object | parameter | parameter values. |
System.Globalization.CultureInfo | culture | culture information |
Returns
Type |
---|
System.Object |
ConvertBack(Object, Type[], Object, CultureInfo)
Used to convert back the values.
Declaration
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | object value. |
System.Type[] | targetTypes | type of target |
System.Object | parameter | parameter values |
System.Globalization.CultureInfo | culture | culture informations |
Returns
Type |
---|
System.Object[] |
Implements
System.Windows.Data.IMultiValueConverter