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.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

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