Graphics.DrawEllipses Method

Draws a number of ellipses defined by an array of RectangleF structures representing bounding boxes.

Namespace: Aurigma.GraphicsMill.AdvancedDrawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public void DrawEllipses(
	Pen pen,
	RectangleF[] rectangles
)

Parameters

pen

Type: Aurigma.GraphicsMill.AdvancedDrawing.Pen

A Pen that determines the color, width, and style of the ellipse.
rectangles

Type: System.Drawing.RectangleF[]

An array of RectangleF structures that define the boundaries of the ellipses.

Remarks

Each ellipse is defined by its tightest bounding rectangle.

To draw filled ellipses, use the FillEllipses(Brush, RectangleF[]) method.

See Also

Reference