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