OleIsCurrentClipboard  _KWTPA

Determines whether the data object pointer previously placed on the clipboard by the OleSetClipboard21ELJF5 function is still on the clipboard.

WINOLEAPI OleIsCurrentClipboard(

    IDataObject * pDataObject

//Pointer to the data object previously copied or cut

   );

 

 

Parameter

pDataObject

[in] Pointer to the IDataObjectZHWNNR interface on the data object containing clipboard data of interest, which the caller previously placed on the clipboard.

 

Return Values

S_OK

The IDataObject pointer is currently on the clipboard and the caller is the owner of the clipboard.

S_FALSE

The indicated pointer is not on the clipboard.

 

Remarks

OleIsCurrentClipboard only works for the data object used in the OleSetClipboard21ELJF5 function. It cannot be called by the consumer of the data object to determine if the object that was on the clipboard at the previous OleGetClipboardKCS835 call is still on the clipboard.

See Also

OleFlushClipboard, OleSetClipboard