Converts a string to an AngleRange object.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
C#
public class StringToAngleRangeConverter : TypeConverter
Inheritance: objectTypeConverterStringToAngleRangeConverter
Inherited Members
Constructors
C#
public StringToAngleRangeConverter()
Methods
Returns whether the type converter can convert an object from the specified type to the type of this converter.
C#
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
An object that provides a format context.
sourceTypeTypeThe type you want to convert from.
Returns:True if this converter can perform the conversion; otherwise, false.
Overrides:
Converts from the specified value to the intended conversion type of the converter.
C#
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
An object that provides a format context.
cultureCultureInfoThe CultureInfo to use as the current culture.
valueobjectThe value to convert to the type of this converter.
Returns:The converted value.
Overrides: