Como: Armazenamento de texto na área de transferência
O exemplo de código a seguir usa o Clipboard objeto definido na System.Windows.Forms namespace armazene uma seqüência de caracteres. Este objeto fornece duas funções de membro: SetDataObject e GetDataObject.Os dados são armazenados em área de transferência enviando qualquer objeto derivado de Object para SetDataObject.
Exemplo
// 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;
}
Consulte também
Tarefas
Como: Recuperar o texto da área de transferência