Esempio n. 1
0
 /// <summary>
 /// Adjusts the color to match the specified int-Argb color.
 /// </summary>
 /// <param name="argb"></param>
 public void SetIntArgb(int argb)
 {
     this.SetRgba(ColorRgba.FromIntArgb(argb));
 }
Esempio n. 2
0
 /// <summary>
 /// Adjusts the color to match the specified int-Rgba color.
 /// </summary>
 /// <param name="rgba"></param>
 public void SetIntRgba(int rgba)
 {
     this.SetRgba(ColorRgba.FromIntRgba(rgba));
 }