Putting formatted text on the clipboard
Working with the Windows clipboard in managed code is both easy and hard. It’s easy because all you need to do in order to put a bit of text on the clipboard is this:
Clipboard.SetText("Put this on the clipboard");
It’s hard because you can’t just do something like this in order to get formatted text:
Clipboard.SetHtml(‘<a href="http://twwilliams.com/>A link</a>"’);
The [...]