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);
public override bool CanConvertTo (System.ComponentModel.ITypeDescriptorContext context, Type destinationType);
override this.CanConvertTo : System.ComponentModel.ITypeDescriptorContext * Type -> bool
Public Overrides Function CanConvertTo (context As ITypeDescriptorContext, destinationType As Type) As Boolean

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

See also