public static bool TrySetFillColor(this SciterGraphics graphics, byte r, byte g, byte b, byte alpha = 255)
 {
     return(graphics?.TrySetFillColor(fillColor: new SciterColor(r: r, g: g, b: b, alpha: alpha)) == true);
 }