(ITypeDescriptorContext context, IDictionary propertyValues)
| 228 | return base.ConvertTo(context, culture, value, destinationType); |
| 229 | } |
| 230 | public override object CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) |
| 231 | { |
| 232 | return new PointF((float)propertyValues["X"], (float)propertyValues["Y"]); |
| 233 | } |
| 234 | public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) |
| 235 | { |
| 236 | return true; |
nothing calls this directly
no outgoing calls
no test coverage detected