PdfSharp.Drawing.XGraphics.DrawRectangles C# (CSharp) Method

DrawRectangles() public method

Draws a series of rectangles.
public DrawRectangles ( XBrush brush, Rectangle rectangles ) : void
brush XBrush
rectangles Rectangle
return void
    public void DrawRectangles(XBrush brush, Rectangle[] rectangles)
    {
      if (brush == null)
        throw new ArgumentNullException("brush");
      if (rectangles == null)
        throw new ArgumentNullException("rectangles");

      DrawRectangles(null, brush, rectangles);
    }
#endif

Same methods

XGraphics::DrawRectangles ( XBrush brush, RectangleF rectangles ) : void
XGraphics::DrawRectangles ( XBrush brush, XRect rectangles ) : void
XGraphics::DrawRectangles ( XPen pen, Rectangle rectangles ) : void
XGraphics::DrawRectangles ( XPen pen, RectangleF rectangles ) : void
XGraphics::DrawRectangles ( XPen pen, XBrush brush, Rectangle rectangles ) : void
XGraphics::DrawRectangles ( XPen pen, XBrush brush, RectangleF rectangles ) : void
XGraphics::DrawRectangles ( XPen pen, XBrush brush, XRect rectangles ) : void
XGraphics::DrawRectangles ( XPen pen, XRect rectangles ) : void