INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- The 'ChangeClipboardChain' procedure removes a specified window
-- from the chain of clipboard viewers.
-- The 'CloseClipboard' procedure closes the clipboard.
-- The 'EmptyClipboard' procedure empties the clipboard and frees handles
-- to data in the clipboard. The procedure then assigns ownership of the
-- clipboard to the window that currently has the clipboard open.
-- The 'GetClipboardData' function retrieves data from the clipboard
-- in a specified format. The clipboard must have been opened previously.
-- The 'IsClipboardFormatAvailable' procedure determines whether
-- the clipboard contains data in the specified format.
-- The 'OpenClipboard' procedure opens the clipboard for examination
-- and prevents other applications from modifying the clipboard content.
-- The 'RegisterClipboardFormat' function registers a new clipboard format.
-- This format can then be used as a valid clipboard format.
-- The 'SetClipboardData' function places data on the clipboard
-- in a specified clipboard format. The window must be the current
-- clipboard owner, and the application must have called the
-- 'OpenClipboard' procedure. (When responding to the WM_RENDERFORMAT
-- and WM_RENDERALLFORMATS messages, the clipboard owner must not call
-- 'OpenClipboard' before calling 'SetClipboardData'.)
-- The 'SetClipboardViewer' function adds the specified window
-- to the chain of clipboard viewers. Clipboard viewer windows receive
-- a WM_DRAWCLIPBOARD message whenever the content of the clipboard
-- changes.
-- The EnumClipboardFormats function enumerates the data formats
-- currently available on the clipboard
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |