コード例 #1
0
 public static bool TrySetLineColor(this SciterGraphics graphics, byte r, byte g, byte b, byte alpha = 255)
 {
     return(graphics?.TrySetLineColor(lineColor: new SciterColor(r: r, g: g, b: b, alpha: alpha)) == true);
 }
コード例 #2
0
 public static bool TrySetLineColor(this SciterGraphics graphics, byte r, byte g, byte b)
 {
     return(graphics?.TrySetLineColor(r: r, g: g, b: b, alpha: 1f) == true);
 }