Clipboard.ContainsData(String) メソッド

定義

指定したデータ形式のデータがクリップボードに存在するかどうかを照会します。

public:
 static bool ContainsData(System::String ^ format);
public static bool ContainsData (string format);
static member ContainsData : string -> bool
Public Shared Function ContainsData (format As String) As Boolean

パラメーター

format
String

検索するデータの形式。 定義済みの形式については、DataFormats のトピックを参照してください。

戻り値

指定した形式のデータをクリップボードから取得できる場合は true。それ以外の場合は false

例外

formatnullです。

次の例では、このメソッドの使用方法を示します。


// After this line executes, IsHTMLDataOnClipboard will be true if
// HTML data is available natively on the clipboard; if not, it 
// will be false.
bool IsHTMLDataOnClipboard = Clipboard.ContainsData(DataFormats.Html);

// If there is HTML data on the clipboard, retrieve it.
string htmlData;
if(IsHTMLDataOnClipboard)
{

    htmlData = Clipboard.GetText(TextDataFormat.Html);
}

' After this line executes, IsHTMLDataOnClipboard will be true if
' HTML data is available natively on the clipboard; if not, it 
' will be false.
Dim IsHTMLDataOnClipboard As Boolean = Clipboard.ContainsData(DataFormats.Html)

' If there is HTML data on the clipboard, retrieve it.
Dim htmlData As String
If IsHTMLDataOnClipboard Then

    htmlData = Clipboard.GetText(TextDataFormat.Html)

End If

注釈

データ形式のクエリ。データを指定したデータ形式BitmapFileDropに自動的に変換できる場合は を返trueします。 その他のデータ形式の場合、このメソッドは、指定した形式がクリップボードでネイティブに使用できる場合にのみを返 true します。

適用対象

こちらもご覧ください