System::Windows::Forms::Clipboard

Copy text to the clipboard


	Clipboard::SetText(SomeTextBox->Text);

Copy Image To Clipboard


	MemoryStream ^MemoryStream1 = gcnew MemoryStream();
	Chart1->SaveImage(MemoryStream1, DataVisualization::Charting::ChartImageFormat::Bmp);
	System::Drawing::Bitmap ^Bitmap1 = gcnew System::Drawing::Bitmap(MemoryStream1);
	System::Windows::Forms::Clipboard::SetImage(Bitmap1);