ActiveReports 12
DrawDoubleLine Method (GraphicsExtensions)

GrapeCity.ActiveReports.v12 Assembly > GrapeCity.ActiveReports Namespace > GraphicsExtensions Class : DrawDoubleLine Method
The graphics to draw on.
System.Drawing.Pen that determines the color, width, and style of the line.
The x-coordinate of the first point.
The y-coordinate of the first point.
The x-coordinate of the second point.
The y-coordinate of the second point.
Draws a double line connecting the two points specified by the coordinate pairs.
Syntax
'Declaration
 
Public Shared Sub DrawDoubleLine( _
   ByVal g As Graphics, _
   ByVal pen As Pen, _
   ByVal x1 As Single, _
   ByVal y1 As Single, _
   ByVal x2 As Single, _
   ByVal y2 As Single _
) 
public static void DrawDoubleLine( 
   Graphics g,
   Pen pen,
   float x1,
   float y1,
   float x2,
   float y2
)

Parameters

g
The graphics to draw on.
pen
System.Drawing.Pen that determines the color, width, and style of the line.
x1
The x-coordinate of the first point.
y1
The y-coordinate of the first point.
x2
The x-coordinate of the second point.
y2
The y-coordinate of the second point.
See Also

Reference

GraphicsExtensions Class
GraphicsExtensions Members