Version

Pen Constructor(Color,Single,DashStyle,LineCap,LineJoin,Single)

Initializes a new instance of the Pen class.
Syntax
'Declaration
 
Public Function New( _
   ByVal color As Color, _
   ByVal width As Single, _
   ByVal style As DashStyle, _
   ByVal cap As LineCap, _
   ByVal join As LineJoin, _
   ByVal miterLimit As Single _
)
public Pen( 
   Color color,
   float width,
   DashStyle style,
   LineCap cap,
   LineJoin join,
   float miterLimit
)

Parameters

color
Pen color.
width
Pen width.
style
Dash style.
cap
Line cap style.
join
Line join style.
miterLimit
Line miter limit.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also