Search
FlowChart.InitializeBox Event
See Also
 



Raised when an user starts drawing a new box, just after the Box object is created.

 Syntax

VB6  Copy Code

Public Event InitializeBox

 Event Data

Parameter

Type

Description

box

[input] reference to a Box

The box that the user has started to draw.

Dispatch ID: 92

 Remarks

This event is raised immediately after the user starts drawing a new box. It lets you set the appearance properties of the box 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