Class GridRangeInfoListConverter
Implements the methods that can be used to convert a range list to a string or vice versa. Access this class through the TypeDescriptor.
Inheritance
System.Object
GridRangeInfoListConverter
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridRangeInfoListConverter : TypeConverter
Constructors
GridRangeInfoListConverter()
Initializes the new instance of the GridRangeInfoListConverter class.
Declaration
public GridRangeInfoListConverter()
Methods
CanConvertFrom(ITypeDescriptorContext, Type)
Determines whether this converter can convert an object of the given type to the type of this converter, using the specified context.
Declaration
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
Parameters
Type | Name | Description |
---|---|---|
System.ComponentModel.ITypeDescriptorContext | context | Format context. |
System.Type | sourceType | The type you want to convert from. |
Returns
Type | Description |
---|---|
System.Boolean | true if this converter can perform the conversion; otherwise, false. |
ConvertFrom(ITypeDescriptorContext, CultureInfo, Object)
Overridden to convert the given object to the type of this converter, using the specified context and culture information.
Declaration
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
Parameters
Type | Name | Description |
---|---|---|
System.ComponentModel.ITypeDescriptorContext | context | Format context. |
System.Globalization.CultureInfo | culture | Current culture information. |
System.Object | value | The object to convert. |
Returns
Type | Description |
---|---|
System.Object | An object that represents the converted value. |