Clipboard.GetData(String) Methode

Definition

Ruft Daten in einem angegebenen Format aus der Zwischenablage ab.

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

Parameter

format
String

Eine Zeichenfolge, die das Format der abzurufenden Daten angibt. Ein Satz vordefinierter Datenformate finden Sie in der DataFormats-Klasse.

Gibt zurück

Ein Objekt, das die Daten im angegebenen Format enthält, oder null, wenn die Daten in diesem Format nicht verfügbar sind.

Ausnahmen

format ist null.

Beispiele

Im folgenden Beispiel wird die Verwendung dieser Methode veranschaulicht.


// 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

Gilt für:

Weitere Informationen