Raised when a user starts drawing a new arrow, just after the Arrow object is created.
SyntaxVB6
Copy Code
|
|---|
Public Event InitializeArrow |
Event DataParameter | Type | Description |
|---|---|---|
arrow | [input] reference to an Arrow | The arrow that the user has started to draw. |
Dispatch ID: 93
RemarksThis 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