Event handler signature that is used by events that indicate that a canvas object has been removed from the scene graph.

Namespace: yWorks.Canvas
Assembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
public delegate void CanvasObjectRemovedEventHandler(
	Object sender,
	ICanvasObject co,
	ICanvasObjectGroup parent
)
Visual Basic
Public Delegate Sub CanvasObjectRemovedEventHandler ( _
	sender As Object, _
	co As ICanvasObject, _
	parent As ICanvasObjectGroup _
)

Parameters

sender
Type: System..::..Object
the sender of the event
co
Type: yWorks.Canvas..::..ICanvasObject
the canvas object that has just been removed from the scene graph
parent
Type: yWorks.Canvas..::..ICanvasObjectGroup
the old parent group of the

See Also