Share via


IsClipboardFormatAvailable (Compact 2013)

3/28/2014

This function determines whether the clipboard contains data in the specified format.

Syntax

BOOL IsClipboardFormatAvailable(
  UINT format
); 

Parameters

  • format
    [in] Unsigned integer that specifies a standard or registered clipboard format.

Return Value

Nonzero indicates that the clipboard format is available. Zero indicates that the clipboard format is not available. To get extended error information, call GetLastError.

Remarks

Typically, an application that recognizes only one clipboard format would call this function when processing the WM_INITMENUPOPUP message. The application would then enable or disable the Paste menu item, depending on the return value. Applications that recognize more than one clipboard format should use the GetPriorityClipboardFormat function for this purpose.

Requirements

Header

winuser.h

Library

Clipbd.lib

See Also

Reference

Clipboard Functions
CountClipboardFormats
EnumClipboardFormats
GetPriorityClipboardFormat
RegisterClipboardFormat
SetClipboardData
WM_INITMENUPOPUP