diff --git a/PInvoke/Shell32/Clipboard.cs b/PInvoke/Shell32/Clipboard.cs index 78649e5b..938102ae 100644 --- a/PInvoke/Shell32/Clipboard.cs +++ b/PInvoke/Shell32/Clipboard.cs @@ -464,6 +464,21 @@ namespace Vanara.PInvoke /// public static class ShellClipboardFormat { + /// HTML Format + public const string CF_HTML = "HTML Format"; + + /// Rich Text Format + public const string CF_RTF = "Rich Text Format"; + + /// Rich Text Format Without Objects + public const string CF_RTFNOOBJS = "Rich Text Format Without Objects"; + + /// RichEdit Text and Objects + public const string CF_RETEXTOBJ = "RichEdit Text and Objects"; + + /// Comma Separated Value + public const string CF_CSV = "Csv"; + /// Undocumented. public const string CFSTR_AUTOPLAY_SHELLIDLISTS = "Autoplay Enumerated IDList Array";