|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user32.lib
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
IsClipboardFormatAvailable
The IsClipboardFormatAvailable function determines whether the clipboard contains data in the specified
format.
BOOL IsClipboardFormatAvailable(
UINT format
| // clipboard format
| );
|
|
Parameters
format
Specifies a standard or registered clipboard format. For a description of the
clipboard formats, see the SetClipboardData function.
Return Values
If the clipboard format is available, the return value is nonzero.
If the clipboard format is not available, the return value is zero. 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_INITMENU or 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.
See Also
CountClipboardFormats, EnumClipboardFormats, GetPriorityClipboardFormat, RegisterClipboardFormat, SetClipboardData, WM_INITMENU, WM_INITMENUPOPUP
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|