Event handler signature that is used by events that indicate that a canvas object has been moved from one place in the scene graph to another.

Namespace: yWorks.Canvas
Assembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2

Syntax

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

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
oldParent
Type: yWorks.Canvas..::..ICanvasObjectGroup
the old parent group of the
oldPredecessor
Type: yWorks.Canvas..::..ICanvasObject
the old predecessor of the object

See Also