public static bool TrySetFillGradientLinear(this SciterGraphics graphics, float x1, float y1, float x2, float y2,
                                             params SciterColorStop[] stops)
 {
     return(graphics?.TrySetFillGradientLinearInternal(x1: x1, y1: y1, x2: x2, y2: y2, stops: stops) == true);
 }