Raised when a Group object is destroyed.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public event EventHandler<GroupEventArgs> GroupDestroyed |
Visual Basic
Copy Code
|
|---|
Public Event GroupDestroyed As EventHandler(Of GroupEventArgs) |
Event DataGroupDestroyed event handlers receive an argument of type GroupEventArgs. The following GroupEventArgs members provide information relevant to the event:
Member name | Description |
|---|---|
The Group that has been destroyed. |
RemarksA group can be destroyed in several ways:
When a group is destroyed, by default the group items are not deleted automatically. You could delete such items from the GroupDestroyed handler, or enable AutoDeleteItems to delete them automatically when the group is destroyed.
See Also