CVB.Net 15.0
Loading...
Searching...
No Matches

Converter that builds the product of an arbitrary number of input values or over an input value and a constant. More...

Public Member Functions

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.
 

Protected Member Functions

virtual object Process (object[] values, Type targetType)
 The actual processing function.
 

Detailed Description

Converter that builds the product of an arbitrary number of input values or over an input value and a constant.

Member Function Documentation

◆ Convert() [1/2]

object Convert ( object value,
Type targetType,
object parameter,
CultureInfo culture )

Conversion (see MSDN help for more information about this method...).

Parameters
valueInput value.
targetTypeTarget data type (currently only double is supported
parameterMathmetical expression.
cultureIgnored
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
valuesInput values to be converted
targetTypeTarget data type (currently only double is supported
parameterMathmetical expression.
cultureIgnored
Returns
Conversion result

◆ ConvertBack() [1/2]

object ConvertBack ( object value,
Type targetType,
object parameter,
CultureInfo culture )

Inverse conversion - not supported by this converter.

Parameters
valueIgnored.
targetTypeIgnored.
parameterIgnored.
cultureIgnored.
Returns
Nothing.
Exceptions
NotSupportedExceptionAlways.

◆ ConvertBack() [2/2]

object[] ConvertBack ( object value,
Type[] targetTypes,
object parameter,
CultureInfo culture )

Inverse conversion - not supported by this converter.

Parameters
valueIgnored.
targetTypesIgnored.
parameterIgnored.
cultureIgnored.
Returns
Nothing.
Exceptions
NotSupportedExceptionAlways.

◆ Process()

virtual object Process ( object[] values,
Type targetType )
protectedvirtual

The actual processing function.

Parameters
valuesvalues to be processed
targetTypetarget type
Returns
Product of all the input values.