Esempio n. 1
0
 /// <summary>
 /// Returns a RGB color.
 /// </summary>
 /// <returns></returns>
 public RgbColor ToRgbColor()
 {
     return ColorConverting.HsbToRgb( this );
 }
Esempio n. 2
0
 /// <summary>
 /// Returns the underlying .NET color.
 /// </summary>
 /// <returns></returns>
 public Color ToColor()
 {
     return ColorConverting.HsbToRgb( this ).ToColor();
 }