FillRectangle() public abstract method

public abstract FillRectangle ( double left, double bottom, double right, double top ) : void
left double
bottom double
right double
top double
return void
Ejemplo n.º 1
0
        public static void FillRectangle(this CanvasPainter p, double left, double bottom, double right, double top, Color color)
        {
            Color prevColor = p.FillColor;

            p.FillColor = color;
            p.FillRectangle(left, bottom, right, top);
            p.FillColor = prevColor;
        }