System.Windows.Forms.Clipboard.ContainsData Method

Indicates whether there is data on the Clipboard that is in the specified format or can be converted to that format.

Syntax

public static bool ContainsData (string format)

Parameters

format
The format of the data to look for. See System.Windows.Forms.DataFormats for predefined formats.

Returns

true if there is data on the Clipboard that is in the specified format or can be converted to that format; otherwise, false.

Remarks

The System.Windows.Forms.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 Clipboard.GetData(string) 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 System.Windows.Forms.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.

Requirements

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Assembly Versions: 2.0.0.0