LowerCaseStringConverter.CanConvertTo(ITypeDescriptorContext, Type) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether an object can be converted to a lowercase string based on the specified parameters.
public:
override bool CanConvertTo(System::ComponentModel::ITypeDescriptorContext ^ ctx, Type ^ type);
public override bool CanConvertTo (System.ComponentModel.ITypeDescriptorContext ctx, Type type);
override this.CanConvertTo : System.ComponentModel.ITypeDescriptorContext * Type -> bool
Public Overrides Function CanConvertTo (ctx As ITypeDescriptorContext, type As Type) As Boolean
Parameters
An object that implements the ITypeDescriptorContext interface.
- type
- Type
The type of object to convert.
Returns
true
if the parameters describe an object that can be converted to a lowercase string object; otherwise, false
.
Examples
The following example demonstrates how to use this method.
// CanConvertTo method.
Console.WriteLine("CanConvertTo: {0}",
myLCStrConverter.CanConvertTo(ctx, testStrVal.GetType()));
' CanConvertTo method.
Console.WriteLine("CanConvertTo: {0}", _
myLCStrConverter.CanConvertTo(ctx, testStrVal.GetType()))
Remarks
This method uses an object that implements the ITypeDescriptorContext interface as the ctx
parameter. This interface provides contextual information about a component. Typically, this interface is used at design time to provide information about a design-time container. The ITypeDescriptorContext is commonly used in type conversion. Override this method in a derived class if custom behavior is required.