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

pen
PenEx that determines the color, width, and style of the line.
polyLine
The array of the PointFEx structures that define the lines starts and ends.

Glossary Item Box

Draws a series of line segments that connect an array of System.Drawing.PointF structures.

Syntax

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

Parameters

pen
PenEx that determines the color, width, and style of the line.
polyLine
The array of the PointFEx structures that define the lines starts and ends.

See Also