Class DoubleToTimeSpanConverter
Represents converter that converts double to TimeSpan using the given parameter.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public class DoubleToTimeSpanConverter : IValueConverter
Constructors
DoubleToTimeSpanConverter()
Declaration
public DoubleToTimeSpanConverter()
Methods
Convert(Object, Type, Object, CultureInfo)
Converts a double to TimeSpan using the given converter.
Declaration
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
System.Object
value
Double value produced by the binding source. |
System.Type
targetType
The type of the binding target property. This parameter is not used. |
System.Object
parameter
The converter parameter to use. This parameter is not used. |
System.Globalization.CultureInfo
culture
The culture to use in the converter. This parameter is not used. |
Returns
System.Object
A converted TimeSpan value. |
ConvertBack(Object, Type, Object, CultureInfo)
Converts a value.
Declaration
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
System.Object
value
The value that is produced by the binding target. |
System.Type
targetType
The type to convert to. |
System.Object
parameter
The converter parameter to use. |
System.Globalization.CultureInfo
culture
The culture to use in the converter. |
Returns
System.Object
A converted value. |
Remarks
This method is not implemented. Throws System.NotImplementedException.