ColumnHeaderConverter.CanConvertTo(ITypeDescriptorContext, Type) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示 ColumnHeaderConverter 是否可以使用指定上下文将 ColumnHeader 转换为指定类型。
public:
override bool CanConvertTo(System::ComponentModel::ITypeDescriptorContext ^ context, Type ^ destinationType);
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
参数
- context
- ITypeDescriptorContext
一个提供格式上下文的 ITypeDescriptorContext。
- destinationType
- Type
一个类型,表示转换的目标类型。
返回
如果该转换器能够执行转换,则为 true
;否则为 false
。
注解
使用上下文参数提取有关调用此转换器的环境的其他信息。 此参数可以是 null
,因此请始终检查它。 同样,上下文对象的属性可以返回 null
。