ActiveReports Developer 7
DrawPolygon Method
See Also 
GrapeCity.ActiveReports.Extensibility.v7 Assembly > GrapeCity.ActiveReports.Extensibility.Rendering.Drawing Namespace > IDrawingCanvas Interface : DrawPolygon Method

pen

PenEx that determines the color, width, and style of the polygon.

point
The array of PointFEx stcutures that define a polygon to draw.

Glossary Item Box

Draws a polygon defined by an array of System.Drawing.PointF structures

Syntax

Visual Basic (Declaration) 
Sub DrawPolygon( _
   ByVal pen As PenEx, _
   ByVal point() As PointFEx _
) 
C# 
void DrawPolygon( 
   PenEx pen,
   PointFEx[] point
)

Parameters

pen

PenEx that determines the color, width, and style of the polygon.

point
The array of PointFEx stcutures that define a polygon to draw.

See Also