WebPlanner Programmer's Guide

IGraphics.DrawRectangles Method (Pen, RectangleF[])

See Also
 


Draws a series of rectangles specified by RectangleF structures.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public abstract void DrawRectangles (
    Pen pen,
    RectangleF[] rects
)

Visual Basic  Copy Code

Public MustOverride Sub DrawRectangles ( _
    pen As Pen, _
    rects() As RectangleF _
)

 Parameters

pen
A .NET Pen object that determines the color, width, and style of the outlines of the rectangles.
rects
An array of .NET RectangleF structures that represent the rectangles to draw.

 See Also