tags:

views:

26

answers:

1

The Clipboard object has a ContainsData() method that can tell if a specific format can be retrieved, but is there any way to tell what format was used to set that data in the first place?

+1  A: 

You can use GetDataObject to get an IDataObject instance, then call GetFormats on that to get a list of the supported formats.

Dean Harding
Thanks for the help.
Swanny