Search
Box.PenStyle Property
See Also
 



Gets or sets the style of the pen used to draw the box frame 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. Initialized with FlowChart.PenStyle.

 Remarks

Specifies dash style for the pen used to paint box' frame lines. 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