SelectionRangeConverter::ConvertTo Method (ITypeDescriptorContext^, CultureInfo^, Object^, Type^)
Converts the specified SelectionRangeConverter object to another type by using the specified culture.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: virtual Object^ ConvertTo( ITypeDescriptorContext^ context, CultureInfo^ culture, Object^ value, Type^ destinationType ) override
Parameters
- context
-
Type:
System.ComponentModel::ITypeDescriptorContext^
A ITypeDescriptorContext that provides a format context.
- culture
-
Type:
System.Globalization::CultureInfo^
The locale information for the conversion.
- value
-
Type:
System::Object^
The Object to convert.
- destinationType
-
Type:
System::Type^
The destination Type to convert into.
| Exception | Condition |
|---|---|
| ArgumentNullException | destinationType is null. |
| NotSupportedException | value cannot be converted to the destinationType. |
The ConvertTo method is specialized to convert SelectionRange values to their String or InstanceDescriptor representations. Other types are passed to the base class implementation of this method.
Notes to Inheritors:
Override this method to provide your own conversion requirements.
The context parameter can be used to extract additional information about the environment this converter is being invoked from. The parameter may be null, so you should always verify the information. Also, properties on the context object may also return null.
Available since 1.1