Converts the given object to another type. The most common types to convert are to and from a string object. The default implementation will make a call to ToString on the object if the object is valid and if the destination type is string. If this cannot convert to the desitnation type, this will throw a NotSupportedException.
[Visual Basic] Overrides Public Function ConvertTo( _ ByVal context As ITypeDescriptorContext, _ ByVal value As Object, _ ByVal destinationType As Type, _ ByVal arguments() As Object _ ) As Object [C#] public override object ConvertTo( ITypeDescriptorContext context, object value, Type destinationType, object[] arguments ); [C++] public: override Object* ConvertTo( ITypeDescriptorContext* context, Object* value, Type* destinationType, Object* arguments[] ); [JScript] public override function ConvertTo( context : ITypeDescriptorContext, value : Object, destinationType : Type, arguments : Object[] ) : Object;
The converted object.
EdgeConverter Class | EdgeConverter Members | System.WinForms Namespace