DragDropClient.Drop Method | |
Retrieve information about a load from the drag event and act on each file in the selection.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Drop(
oDragEvent
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Drop(
Usual oDragEvent = default
)
Request Example
View SourceParameters
- oDragEvent (Optional)
- Type: Usual
The drag event that determines the position of the mouse (in canvas coordinates), as well as the number and names of files, in the drag-and-drop load.
Return Value
Type:
UsualRemarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
The system dispatches this method when the user lets go of the mouse button to drop the load in the client area. This method is required to handle drag-and-drop correctly. It retrieves information about the load from the drag event and acts on each file in the selection. If the drag-and-drop client is a shell window, it might open a data browser for each file in the selection.
See Also