Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Annotations.Automation)

DragDrop Event

Show in webframe
Occurs when an AnnObject is being dragged out of a container.
Syntax
add_dragDrop(function(sender, e))
dragDrop.add(function(sender, e))
remove_dragDrop(function(sender, e))
dragDrop.remove(function(sender, e))
    

This event occurs during editing of an object when multiple containers are used and an object is being dragged out of one container. The default behavior will move the object from the source to the target container (if any). Override this method to provide custom behavior if required.

This event will trigger only if the value of EnableDragDrop is true.

EnablePartialDrop controls the behavior when an object is dragged then dropped while its boundary is not completely enclosed in any container.

Event Data
Parameter Type Description
sender 'var' The source of the event.
e AnnDragDropEventArgs The event data.
See Also
Error processing SSI file