Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / CommandConverter Class / CanConvertTo Method / CanConvertTo(ITypeDescriptorContext,Type) Method
A format context that provides information about the environment from which this converter is being invoked.
The type being evaluated for conversion.

In This Topic
    CanConvertTo(ITypeDescriptorContext,Type) Method
    In This Topic
    Determines whether an instance of ICommand can be converted to the specified type.
    Syntax
    'Declaration
     
    
    Public Overloads Overrides NotOverridable Function CanConvertTo( _
       ByVal context As ITypeDescriptorContext, _
       ByVal destinationType As Type _
    ) As Boolean
    public override bool CanConvertTo( 
       ITypeDescriptorContext context,
       Type destinationType
    )

    Parameters

    context
    A format context that provides information about the environment from which this converter is being invoked.
    destinationType
    The type being evaluated for conversion.

    Return Value

    True if this converter can perform the operation; otherwise, False.
    See Also