dragDrop method
Initiates a drag event.
Syntax
HRESULT retVal = object.dragDrop(pfRet);
Parameters
- pfRet [out, retval]
-
Type: VARIANT_BOOL
Pointer to a VARIANT_BOOL that receives one of the following values:
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Standards information
There are no standards that apply here.
Remarks
You can use this method to fire the HTMLFrameSiteEvents::ondragstart event. If the event is not canceled, a drag operation is started. The method returns VARIANT_TRUE when the mouse is released. If the HTMLFrameSiteEvents::ondragstart event is canceled, the method returns VARIANT_FALSE immediately.
Show: