StringToIntArrayTypeConverterConvertTo Method |
Converts the given value object to the specified type, using the specified context and culture information.
Namespace:
Hummingbird.UI.Converters
Assembly:
Hummingbird.UI (in Hummingbird.UI.dll) Version: 1.1.0.0
Syntax public override Object ConvertTo(
ITypeDescriptorContext context,
CultureInfo culture,
Object value,
Type destinationType
)
Public Overrides Function ConvertTo (
context As ITypeDescriptorContext,
culture As CultureInfo,
value As Object,
destinationType As Type
) As Object
public:
virtual Object^ ConvertTo(
ITypeDescriptorContext^ context,
CultureInfo^ culture,
Object^ value,
Type^ destinationType
) override
Parameters
- context
- Type: System.ComponentModelITypeDescriptorContext
An ITypeDescriptorContext that provides a format context. - culture
- Type: System.GlobalizationCultureInfo
A CultureInfo. If null is passed, the current culture is assumed. - value
- Type: SystemObject
The Object to convert. - destinationType
- Type: SystemType
The Type to convert the value parameter to.
Return Value
Type:
ObjectAn
Object that represents the converted value.
Exceptions See Also