Hello,
I'm looking for GeoColor.ToGdiPlusColor() v2 API equivalent in v3 ?
Thank you
Patrick.
Hello,
I'm looking for GeoColor.ToGdiPlusColor() v2 API equivalent in v3 ?
Thank you
Patrick.
I just wrote that … but it would be better to have it built-in
public class ColorHelper
{
public static Color GeoColorToGdiPlusColor(GeoColor c)
{
return Color.FromArgb (c.AlphaComponent, c.RedComponent, c.GreenComponent, c.BlueComponent);
}
}
Patrick,
Thanks for pointing this out. I have added this to our tracking system; we will review it before the next relapse.
Thanks,
ThinkGeo Support