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?
The Clipboard object has a ContainsData() method that can tell if a specific format
Share
You can use GetDataObject to get an IDataObject instance, then call GetFormats on that to get a list of the supported formats.