Search
FlowChart.RequestCreateArrow Event
See Also
 



A validation event that is raised while users draw new arrows.

 Syntax

VB6  Copy Code

Public Event RequestCreateArrow

 Event Data

Parameter

Type

Description

arrow

[input] reference to Arrow object

The Arrow that the user is trying to create.

create

[output] boolean

Set it to false to cancel the operation.

Dispatch ID: 14

 Remarks

Raised when the user is creating an arrow, this event gives you the chance to cancel the operation. Set the create parameter to false and the creation shall be cancelled. Note that the DestinationBox / DestinationTable properties cannot be used in RequestCreateArrow event handler because they are still not set. See ExpectedDestination for more information and an example on how this event can be handled.

 See Also