ClassIntArrayToDoubleValueConverter
Represents a converter that converts the first object of an Array of integer objects into a double object and vise versa. If the Array is null or empty the converter returns null.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public class IntArrayToDoubleValueConverter : IValueConverter
Inheritance: objectIntArrayToDoubleValueConverter
Implements:
Constructors
IntArrayToDoubleValueConverter()
Declaration
public IntArrayToDoubleValueConverter()
Methods
Convert(object, Type, object, CultureInfo)
Converts the first value of an integer type Array into a value of type double.
Declaration
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
value
The Array that will be used by the converter.
targetType
This parameter is not used.
parameter
This parameter is not used.
culture
This parameter is not used.
Returns
ConvertBack(object, Type, object, CultureInfo)
Converts a value of type double into Array of integers.
Declaration
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
value
The double that will be used by the converter.
targetType
This parameter is not used.
parameter
This parameter is not used.
culture
This parameter is not used.
Returns