Search
FlowChart.InitializeArrow Event
See Also
 



Raised when a user starts drawing a new arrow, just after the Arrow object is created.

 Syntax

VB6  Copy Code

Public Event InitializeArrow

 Event Data

Parameter

Type

Description

arrow

[input] reference to an Arrow

The arrow that the user has started to draw.

Dispatch ID: 93

 Remarks

This event is raised immediately after the user starts drawing a new arrow. It lets you set the appearance properties of the arrow if you need their values to be different from the default ones defined in the FlowChart object, or if they don't have correspondent properties in the FlowChart class. The Initialize* events are intended only for initializing the appearance of objects. Do not alter the structure of the diagram from their handlers, i.e. do not create new items nor delete existing ones; if you do that, the control will be in an undefined state and will likely throw an exception at some point.

 See Also