Search
ESelStyle Enumeration
See Also
 



Members of this enumeration can be assigned to the SelStyle property of an item to specify how the item's selection handles behave and what they look like.

 Syntax

VB6  Copy Code

Public Enum ESelStyle

C++  Copy Code

enum ESelStyle

 Members

  Member name Value Description

sstInvisible

0

The selection is not indicated visually. The item can be resized by dragging the borders and corners of its bounding rectangle. Clicking inside the item interior near the borders and dragging starts arrow creation. Clicking near its center and dragging starts moving the item.

sstSquareHandles

1

The selection is indicated by drawing square handles around the item and at its center. The item can be moved or resized by dragging those handles. Clicking inside the item interior and dragging starts arrow creation.

sstDashFrame

2

The selection is indicated by drawing dashed frame around the item. The item can be resized by dragging the borders and corners of that frame. Clicking inside the item interior, near the borders, and dragging starts arrow creation. Clicking near the center and dragging starts moving the item.

sstHatchFrame

3

The selection is indicated by drawing hatched frame around the item. The item can be resized by dragging the borders and corners of that frame. Clicking inside the item interior, near the borders, and dragging starts arrow creation. Clicking near its center and dragging starts moving the item.

sstHatchHandles

4

The selection is indicated by drawing square handles and hatched frame around the item. The item can be resized by dragging those handles, and moved by dragging the frame. Clicking inside the item interior starts arrow creation.

sstHatchHandles2

5

Looks like sstHatchHandles, but allows moving the node from the interior area. Links are created from the points near the edge.

sstHatchHandles3

6

Behaves like sstHatchHandles2, but paints the selection frame using a denser brush pattern.

sstMoveOnly

7

If a node is selected, it can be only moved. Best used with ModificationStart set to msAutoHandles.

sstEasyMove

8

Any point of the interior of a node enables moving the node, except a small area in the center that allows creating links. Best used with ModificationStart set to msAutoHandles.

sstSquareHandles2

9

Square resize handles are drawn around a selected node. There isn't a move- handle in the center as with the sstSquareHandles style, but nodes can be moved by dragging their interior or caption areas. Links can be created by drawing from near the edges of a node.

sstCustom

10

FlowChartX raises the DrawSelHandles and HitTestSelHandles events to let your application perform custom drawing and hit testing of selection handles.

sstInvisibleMove

11

There aren't any selection handles drawn. Clicking and dragging an item moves it.

sstRoundAndSquare

12

Corner resize handles are round, remaining handles are square.

sstRoundAndSquare2

13

Corner resize handles are round, remaining handles are square. In addition, there is a dashed frame drawn around selected nodes.

 See Also