(ITypeDescriptorContext context, Type sourceType)
| 252 | { |
| 253 | } |
| 254 | public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) |
| 255 | { |
| 256 | return ((sourceType == typeof(string)) || base.CanConvertFrom(context, sourceType)); |
| 257 | } |
| 258 | public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) |
| 259 | { |
| 260 | return ((destinationType == typeof(RectangleF)) || base.CanConvertTo(context, destinationType)); |
nothing calls this directly
no test coverage detected