processDragDropUrl Method

Summary

Processes the image dropped on this ImageViewer during a drag/drop operation.

Syntax

JavaScript Syntax
ImageViewer.prototype.processDragDropUrl = function(targetItem, url) 
TypeScript Syntax
processDragDropUrl(targetItem: ImageViewerItem, url: string): void; // protected 

Parameters

targetItem

The target item for the drop.

url

The url string being dropped.

Remarks

This method is called by the viewer as the final step when a text containing URL is dropped into an item. The following is the default implementation (to customize it, create a new class that derives from ImageViewer and override this method):

If targetItem is null, then the viewer will create a new ImageViewerItem, set url into ImageViewerItem.Url and adds the item to the viewer.

If targetItem is not null then url will be set in ImageViewerItem.Url. In other words, the existing image in the item (if any) will be replaced.

For more information, refer to Image Viewer Drag and Drop.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls Assembly