次の方法で共有


Clipboard.GetData(String) メソッド

定義

指定した形式のデータをクリップボードから取得します。

public:
 static System::Object ^ GetData(System::String ^ format);
public static object GetData (string format);
static member GetData : string -> obj
Public Shared Function GetData (format As String) As Object

パラメーター

format
String

取得するデータの形式を指定する文字列。 定義済みのデータ形式のセットについては、DataFormats クラスを参照してください。

戻り値

Object

指定した形式のデータを格納しているオブジェクト。指定した形式でデータを取得できない場合は null

例外

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

適用対象

こちらもご覧ください