(ITypeDescriptorContext context, object value, Attribute[] attributes)
| 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" }); |
| 241 | } |
| 242 | public override bool GetPropertiesSupported(ITypeDescriptorContext context) |
| 243 | { |
| 244 | return true; |
nothing calls this directly
no test coverage detected