(ITypeDescriptorContext context)
| 232 | return new PointF((float)propertyValues["X"], (float)propertyValues["Y"]); |
| 233 | } |
| 234 | public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) |
| 235 | { |
| 236 | return true; |
| 237 | } |
| 238 | public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) |
| 239 | { |
| 240 | return TypeDescriptor.GetProperties(typeof(PointF), attributes).Sort(new string[] { "X", "Y" }); |
nothing calls this directly
no outgoing calls
no test coverage detected