Converter that builds the product of an arbitrary number of input values or over an input value and a constant.
More...
|
object | Convert (object value, Type targetType, object parameter, CultureInfo culture) |
| Conversion (see MSDN help for more information about this method...).
|
|
object | Convert (object[] values, Type targetType, object parameter, CultureInfo culture) |
| Conversion (see MSDN help for more information about this method...).
|
|
object | ConvertBack (object value, Type targetType, object parameter, CultureInfo culture) |
| Inverse conversion - not supported by this converter.
|
|
object[] | ConvertBack (object value, Type[] targetTypes, object parameter, CultureInfo culture) |
| Inverse conversion - not supported by this converter.
|
|
|
virtual object | Process (object[] values, Type targetType) |
| The actual processing function.
|
|
Converter that builds the product of an arbitrary number of input values or over an input value and a constant.
◆ Convert() [1/2]
object Convert |
( |
object | value, |
|
|
Type | targetType, |
|
|
object | parameter, |
|
|
CultureInfo | culture ) |
Conversion (see MSDN help for more information about this method...).
- Parameters
-
value | Input value. |
targetType | Target data type (currently only double is supported |
parameter | Mathmetical expression. |
culture | Ignored |
- Returns
- Conversion result
◆ Convert() [2/2]
object Convert |
( |
object[] | values, |
|
|
Type | targetType, |
|
|
object | parameter, |
|
|
CultureInfo | culture ) |
Conversion (see MSDN help for more information about this method...).
- Parameters
-
values | Input values to be converted |
targetType | Target data type (currently only double is supported |
parameter | Mathmetical expression. |
culture | Ignored |
- Returns
- Conversion result
◆ ConvertBack() [1/2]
object ConvertBack |
( |
object | value, |
|
|
Type | targetType, |
|
|
object | parameter, |
|
|
CultureInfo | culture ) |
Inverse conversion - not supported by this converter.
- Parameters
-
value | Ignored. |
targetType | Ignored. |
parameter | Ignored. |
culture | Ignored. |
- Returns
- Nothing.
- Exceptions
-
NotSupportedException | Always. |
◆ ConvertBack() [2/2]
object[] ConvertBack |
( |
object | value, |
|
|
Type[] | targetTypes, |
|
|
object | parameter, |
|
|
CultureInfo | culture ) |
Inverse conversion - not supported by this converter.
- Parameters
-
value | Ignored. |
targetTypes | Ignored. |
parameter | Ignored. |
culture | Ignored. |
- Returns
- Nothing.
- Exceptions
-
NotSupportedException | Always. |
◆ Process()
virtual object Process |
( |
object[] | values, |
|
|
Type | targetType ) |
|
protectedvirtual |
The actual processing function.
- Parameters
-
values | values to be processed |
targetType | target type |
- Returns
- Product of all the input values.