Search
Arrow.PenStyle Property
See Also
 



Gets or sets the dash style of the pen used to draw the arrow lines.

 Syntax

VB6  Copy Code

Public Property Get PenStyle() As EPenStyle
Public Property Let PenStyle( _
    ByVal Value As EPenStyle _
)

C++  Copy Code

public:
EPenStyle get_PenStyle ()
void put_PenStyle (
    EPenStyle value
)

 Property Value

A member of the EPenStyle enumeration.

 Remarks

Specifies dash style for the pen used to paint arrow's segments and arrowhead outlines. The following values are currently supported: psSolid, psDash, psDot, psDashDot, psDashDotDot. Non-solid dash styles are ignored by the classic Graphics engine if PenWidth is greater than 1.

 See Also