Comment : stocker du texte dans le Presse-papiers
Mise à jour : novembre 2007
L'exemple de code suivant utilise l'objet Clipboard défini dans l'espace de noms System.Windows.Forms pour stocker une chaîne. Cet objet fournit deux fonctions membres : SetDataObject et GetDataObject. Les données sont stockées dans le Presse-papiers en envoyant tout objet dérivé de Object à SetDataObject.
Exemple
// store_clipboard.cpp
// compile with: /clr
#using <System.dll>
#using <System.Drawing.dll>
#using <System.Windows.Forms.dll>
using namespace System;
using namespace System::Windows::Forms;
[STAThread] int main()
{
String^ str = "This text is copied into the Clipboard.";
// Use 'true' as the second argument if
// the data is to remain in the clipboard
// after the program terminates.
Clipboard::SetDataObject(str, true);
Console::WriteLine("Added text to the Clipboard.");
return 0;
}
Voir aussi
Tâches
Comment : récupérer du texte du Presse-papiers