wpDroppedOnObject - Syntax

This instance method is called on an object that has just been dragged (a source object) when the target object that it was dropped on does not know what action to perform. This instance method is called only on a source object when that source object has previously responded favorably to a wpDraggedOverObject instance method call.

#define INCL_WINWORKPLACE
#include <os2.h>

WPObject     *somSelf;          /*  Pointer to the object on which the method is being invoked. */
WPObject     *DroppedOnObject;  /*  Pointer to the object that was dropped on. */
BOOL          rc;               /*  Return code. */

rc = wpDroppedOnObject(somSelf, DroppedOnObject);


[Back: wpDroppedOnObject]
[Next: wpDroppedOnObject Parameter - somSelf]