C# Class Fusion.Core.Design.MatrixConverter

Defines a type converter for Matrix.
Inheritance: BaseConverter
Show file Open project: demiurghg/FusionEngine

Public Methods

Method Description
ConvertFrom ( ITypeDescriptorContext context, CultureInfo culture, object value ) : object

Converts the given object to the type of this converter, using the specified context and culture information.

ConvertTo ( ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType ) : object

Converts the given value object to the specified type, using the specified context and culture information.

CreateInstance ( ITypeDescriptorContext context, IDictionary propertyValues ) : object

Creates an instance of the type that this T:System.ComponentModel.TypeConverter is associated with, using the specified context, given a set of property values for the object.

MatrixConverter ( ) : System

Initializes a new instance of the MatrixConverter class.

Method Details

ConvertFrom() public method

Converts the given object to the type of this converter, using the specified context and culture information.
/// The conversion cannot be performed. ///
public ConvertFrom ( ITypeDescriptorContext context, CultureInfo culture, object value ) : object
context ITypeDescriptorContext An that provides a format context.
culture System.Globalization.CultureInfo The to use as the current culture.
value object The to convert.
return object

ConvertTo() public method

Converts the given value object to the specified type, using the specified context and culture information.
/// The parameter is null. /// /// The conversion cannot be performed. ///
public ConvertTo ( ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType ) : object
context ITypeDescriptorContext An that provides a format context.
culture System.Globalization.CultureInfo A . If null is passed, the current culture is assumed.
value object The to convert.
destinationType System.Type The to convert the parameter to.
return object

CreateInstance() public method

Creates an instance of the type that this T:System.ComponentModel.TypeConverter is associated with, using the specified context, given a set of property values for the object.
public CreateInstance ( ITypeDescriptorContext context, IDictionary propertyValues ) : object
context ITypeDescriptorContext An that provides a format context.
propertyValues IDictionary An of new property values.
return object

MatrixConverter() public method

Initializes a new instance of the MatrixConverter class.
public MatrixConverter ( ) : System
return System