Search
Arrow.SelStyle Property
See Also
 



Gets or sets a value that indicates the style of the arrow's selection handles.

 Syntax

VB6  Copy Code

Public Property Get SelStyle() As ESelStyle
Public Property Let SelStyle( _
    ByVal Value As ESelStyle _
)

C++  Copy Code

public:
ESelStyle get_SelStyle ()
void put_SelStyle (
    ESelStyle value
)

 Property Value

A member of the ESelStyle enumeration.

 Remarks

Specifies how arrow's selection status is indicated visually. You can choose between the following styles:

sstSquareHandles

The selection is indicated by drawing square handles at the position of each control point.

sstDashFrame

The selection is indicated by drawing dashed line segments along the arrow's segments. In addition, there are square selection handles drawn at the location of each control point of the arrow.

sstCustom

FlowChartX raises the DrawSelHandles events to let your application perform custom drawing of arrow's selection handles.

 See Also