Error processing SSI file
(Leadtools.Controls)

Show in webframe

ProcessDropImage Method




The target item for the drop.
The image being dropped.
true if image is the floater image of another item, otherwise; false.
The transformation matrix of image.
Processes the image dropped on this ImageViewer during a drag/drop operation.
Syntax
protected virtual void ProcessDropImage( 
   ImageViewerItem targetItem,
   RasterImage image,
   bool isFloaterImage,
   LeadMatrix transform
)
'Declaration
 
Protected Overridable Sub ProcessDropImage( _
   ByVal targetItem As ImageViewerItem, _
   ByVal image As RasterImage, _
   ByVal isFloaterImage As Boolean, _
   ByVal transform As LeadMatrix _
) 

Parameters

targetItem
The target item for the drop.
image
The image being dropped.
isFloaterImage
true if image is the floater image of another item, otherwise; false.
transform
The transformation matrix of image.
Remarks

This method is called by the viewer as the final step when an image 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 image into ImageViewerItem.Image and adds the item to the viewer.

If targetItem is not null then the following is performed:

Requirements

Target Platforms

See Also

Reference

ImageViewer Class
ImageViewer Members

Error processing SSI file