Search
FlowChart.GroupDestroyed Event
See Also
 



Occurs when a group of objects is destroyed.

 Syntax

VB6  Copy Code

Public Event GroupDestroyed

 Event Data

Parameter

Type

Description

group

[input] reference to Group object

The group that is destroyed.

Dispatch ID: 32

 Remarks

Raised when a group of objects is destroyed. This happens if the main object of the group is deleted. In this case you might want to delete also the objects attached to the group too and this event is the right place to do that. Note that the main object of the group is already deleted when this event is raised, so the MainObject property shouldn't be used in the event handler. You could use one of the *Deleted events to perform some action when an object is deleted.

 See Also