I have implemented a DragDrop feature in which users can drag one or more images from ImageEnMView to ImageEnView.
When the user drags and drops the information that we get in OnDragDrop event of ImageEnView is Source and this source just returns the Class Name of the object from where DragDrop initiated.
How can I get the name of source that is assigned to ImageEnMView at design time?
I want this because I want to perform different activities based on the source of DragDrop.
That is just the standard VCL OnDragDrop event, so if you check that Source is TImageEnMView, then you can use TImageEnMView(Source) to access its properties.