Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / CommandConverter Class / CanConvertFrom Method / CanConvertFrom(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
    CanConvertFrom(ITypeDescriptorContext,Type) Method
    In This Topic
    Determines whether an object of the specified type can be converted to an instance of ICommand.
    Syntax
    'Declaration
     
    
    Public Overloads Overrides NotOverridable Function CanConvertFrom( _
       ByVal context As ITypeDescriptorContext, _
       ByVal sourceType As Type _
    ) As Boolean
    public override bool CanConvertFrom( 
       ITypeDescriptorContext context,
       Type sourceType
    )

    Parameters

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

    Return Value

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