Class StringCollectionToList
Converter class which is used to convert the string collection into List of string.
Inheritance
Namespace: Syncfusion.Windows.Grid.Olap
Assembly: Syncfusion.OlapGrid.WPF.dll
Syntax
public class StringCollectionToList : TypeConverter
Constructors
StringCollectionToList()
Declaration
public StringCollectionToList()
Methods
CanConvertFrom(ITypeDescriptorContext, Type)
Returns 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 | An System.ComponentModel.ITypeDescriptorContext that provides a format context. |
| System.Type | sourceType | A System.Type that represents 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)
Converts 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 | An System.ComponentModel.ITypeDescriptorContext that provides a format context. |
| System.Globalization.CultureInfo | culture | The System.Globalization.CultureInfo to use as the current culture. |
| System.Object | value | The System.Object to convert. |
Returns
| Type | Description |
|---|---|
| System.Object | An System.Object that represents the converted value. |
Exceptions
| Type | Condition |
|---|---|
| System.NotSupportedException | The conversion cannot be performed. |