(ITypeDescriptorContext context, object value, Attribute[] attributes)
| 316 | return true; |
| 317 | } |
| 318 | public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) |
| 319 | { |
| 320 | return TypeDescriptor.GetProperties(typeof(RectangleF), attributes).Sort(new string[] { "X", "Y", "Width", "Height" }); |
| 321 | } |
| 322 | public override bool GetPropertiesSupported(ITypeDescriptorContext context) |
| 323 | { |
| 324 | return true; |
nothing calls this directly
no test coverage detected