(ITypeDescriptorContext context, IDictionary propertyValues)
| 388 | return base.ConvertTo(context, culture, value, destinationType); |
| 389 | } |
| 390 | public override object CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) |
| 391 | { |
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected