ClassDoubleToTimeSpanConverter
Represents converter that converts double to TimeSpan using the given parameter.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public class DoubleToTimeSpanConverter : IValueConverter
Inheritance: objectDoubleToTimeSpanConverter
Implements:
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
value
Double value produced by the binding source.
targetType
The type of the binding target property. This parameter is not used.
parameter
The converter parameter to use. This parameter is not used.
culture
The culture to use in the converter. This parameter is not used.
Returns
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
value
The value that is produced by the binding target.
targetType
The type to convert to.
parameter
The converter parameter to use.
culture
The culture to use in the converter.
Returns
A converted value.
Remarks
This method is not implemented. Throws NotImplementedException.