(ITypeDescriptorContext context)
| 392 | return Color.FromArgb((byte)propertyValues["A"], (byte)propertyValues["R"], (byte)propertyValues["G"], (byte)propertyValues["B"]); |
| 393 | } |
| 394 | public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) |
| 395 | { |
| 396 | return true; |
| 397 | } |
| 398 | public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) |
| 399 | { |
| 400 | PropertyDescriptorCollection tProperties = TypeDescriptor.GetProperties(typeof(Color), attributes); |
nothing calls this directly
no outgoing calls
no test coverage detected