Clipboard.ContainsData Method
Assembly: System.Windows.Forms (in system.windows.forms.dll)
public static boolean ContainsData ( String format )
public static function ContainsData ( format : String ) : boolean
Not applicable.
Parameters
- format
The format of the data to look for. See DataFormats for predefined formats.
Return Value
true if there is data on the Clipboard that is in the specified format or can be converted to that format; otherwise, false.| Exception type | Condition |
|---|---|
| The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process. | |
| The current thread is not in single-threaded apartment (STA) mode. Add the STAThreadAttribute to your application's Main method. |
The DataFormats class contains pre-defined format names that you can use with this method.
Use this method to determine whether the Clipboard contains data in the specified format or a compatible format before retrieving it with the GetData method.
Note: |
|---|
| Data can be converted to another format if it was stored specifying that conversion is allowed, and if the requested format is compatible with the stored format. For example, data stored as Unicode can be converted to text. The Clipboard class can only be used in threads set to single thread apartment (STA) mode. To use this class, ensure that your Main method is marked with the STAThreadAttribute attribute. |
- UIPermission for access to the system Clipboard. Associated enumeration: UIPermissionClipboard.AllClipboard
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: