onDropFiles (hWnd, x, y, files$[])
This callback is invoked when the user drags files into your window
Parameter | Description |
---|---|
hWnd | The handle to the window the files were dragged into |
x | The x coordinate of the mouse relative to hWnd |
y | The y coordinate of the mouse relative to hWnd |
files$[] | An array containing the names of the files that were dragged |
0
This is a callback function. You must supply it yourself. To register this callback, use the WinXRegOnDropFiles function.
' A simple onDropFiles callback function
END FUNCTION |