Clipboard.SetData(String, Object) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Archivia i dati specificati sugli Appunti nel formato specificato.
public:
static void SetData(System::String ^ format, System::Object ^ data);
public static void SetData (string format, object data);
static member SetData : string * obj -> unit
Public Shared Sub SetData (format As String, data As Object)
Parametri
- format
- String
Una stringa che specifica il formato da utilizzare per archiviare i dati. Per un set di formati dati predefiniti, vedere la classe DataFormats.
- data
- Object
Un oggetto che rappresenta i dati da archiviare sugli Appunti.
Esempio
Nell'esempio seguente viene illustrato l'uso di questo metodo.
// For this example, the data to be placed on the clipboard is a simple
// string.
string textData = "I want to put this string on the clipboard.";
// After this call, the data (string) is placed on the clipboard and tagged
// with a data format of "Text".
Clipboard.SetData(DataFormats.Text, (Object)textData);
' For this example, the data to be placed on the clipboard is a simple
' string.
Dim textData As String = "I want to put this string on the clipboard."
' After this call, the data (string) is placed on the clipboard and tagged
' with a data format of "Text".
Clipboard.SetData(DataFormats.Text, CType(textData, Object))
Commenti
Questo metodo aggiunge dati con conversione automatica abilitata se il formato di dati corrispondente è FileDrop o Bitmap. In caso contrario, la conversione automatica è disabilitata.