FontUnitConverter.CanConvertTo(ITypeDescriptorContext, Type) Method

Definition

Returns a value indicating whether the converter can convert a FontUnit object to the specified type.

public override bool CanConvertTo (System.ComponentModel.ITypeDescriptorContext context, Type destinationType);

Parameters

context
ITypeDescriptorContext

An ITypeDescriptorContext that indicates the context of the object to convert.

destinationType
Type

A Type that represents the data type to convert to.

Returns

true if the converter supports converting a FontUnit object to the destination type; otherwise, false.

Remarks

This method will return true only if the destinationType is String. The only type this converter can convert FontUnit into is String.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also