Search
FlowChart.ArrowModifying Event
See Also
 



Occurs while an Arrow is being moved or resized.

 Syntax

VB6  Copy Code

Public Event ArrowModifying

 Event Data

Parameter

Type

Description

arrow

[input] reference to an Arrow

The arrow that is being modified.

docX

[input] long

The mouse x position in document coordinates.

docY

[input] long

The mouse y position in document coordinates.

selHandle

[input] long

Index of the selection handle used to modify the arrow.

Confirm

[output] boolean

Specifies whether the user should be allowed to drop the arrow at the current mouse position.

Dispatch ID: 96

 Remarks

This event is raised after each mouse movement while modifying an arrow. Setting Confirm to false will change the mouse cursor to a Stop icon, or to your custom icon set via SetMouseCursor. The event is raised once again when the mouse button is released. Setting Confirm to false in that case will cancel the modification and return the arrow to its original position.

The selection handle index corresponds to the index of the arrow control point that is being dragged.

 See Also