Composes a Thickness value from 1 or more input values, potentially doing calculations on them as defined by the converter parameter. 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 | |
| Thickness | Parse (double[] v, string param) |
| Convert one or more double values into a Thickness structure. | |
Composes a Thickness value from 1 or more input values, potentially doing calculations on them as defined by the converter parameter.
Refer to the binding values via variable v; calculation is being carried out uniformly for all the constituents...
| object Convert | ( | object | value, |
| Type | targetType, | ||
| object | parameter, | ||
| CultureInfo | culture ) |
Conversion (see MSDN help for more information about this method...).
| value | Input value. |
| targetType | Target data type (currently only double is supported |
| parameter | Mathmetical expression. |
| culture | Ignored |
| object Convert | ( | object[] | values, |
| Type | targetType, | ||
| object | parameter, | ||
| CultureInfo | culture ) |
Conversion (see MSDN help for more information about this method...).
| values | Input values to be converted |
| targetType | Target data type (currently only double is supported |
| parameter | Mathmetical expression. |
| culture | Ignored |
| object ConvertBack | ( | object | value, |
| Type | targetType, | ||
| object | parameter, | ||
| CultureInfo | culture ) |
Inverse conversion - not supported by this converter.
| value | Ignored. |
| targetType | Ignored. |
| parameter | Ignored. |
| culture | Ignored. |
| NotSupportedException | Always. |
| object[] ConvertBack | ( | object | value, |
| Type[] | targetTypes, | ||
| object | parameter, | ||
| CultureInfo | culture ) |
Inverse conversion - not supported by this converter.
| value | Ignored. |
| targetTypes | Ignored. |
| parameter | Ignored. |
| culture | Ignored. |
| NotSupportedException | Always. |
|
protected |
Convert one or more double values into a Thickness structure.
| v | double values |
| param | parser expression(s) (comma separated) |