In This Topic
Draws a line composed of several segments, with start and end markers.
Syntax
'Declaration
Public Shared Sub DrawPdfLine( _
ByVal As GcGraphics, _
ByVal As System.Collections.Generic.IReadOnlyList(Of PointF), _
ByVal As System.Single, _
ByVal As System.Drawing.Color, _
ByVal () As System.Single, _
ByVal As LineEndingStyle, _
ByVal As LineEndingStyle, _
ByVal As System.Drawing.Color _
)
public static void DrawPdfLine(
GcGraphics ,
System.Collections.Generic.IReadOnlyList<PointF> ,
System.float ,
System.Drawing.Color ,
System.float[] ,
LineEndingStyle ,
LineEndingStyle ,
System.Drawing.Color
)
Parameters
- g
- The graphics to draw on.
- points
- An array of points defining the line.
- lineWidth
- The line width.
- lineColor
- The line color.
- lineDashPattern
- The dash pattern, null indicates a solid line.
- lineStartStyle
- The style of the start marker.
- lineEndStyle
- The style of the end marker.
- lineEndingsFillColor
- The fill color used to render the markers.
See Also