FontTypeConverter.CanConvertTo(ITypeDescriptorContext, Type) Method

Definition

Returns a value that indicates whether this FontTypeConverter can convert a GlyphRun to an instance of a 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 object that provides contextual information.

destinationType
Type

The type of object that you want to convert a glyph run to.

Returns

true if conversion is possible; otherwise, false.

Remarks

As implemented in this class, this method returns true only if destinationType is Uri.

The context parameter is not used. See Notes for Inheritors.

Notes to Inheritors

Override this method to provide your own conversion requirements. Use the context parameter to extract additional information about the environment from which this converter is invoked. This parameter can be null; therefore, always check it. Also, properties on the context object can return a null reference (Nothing).

Applies to