Hi,

Hereby I am going to present copy to clipboard functionality using C#.
This is very simple coding.

string sCopytoClipboard = "The string which you want to copy to clip board";
Clipboard.SetDataObject(sCopytoClipboard , true);
IDataObject iData = Clipboard.GetDataObject();
IDataObject data = Clipboard.GetDataObject();
if (data.GetDataPresent(typeof(string))) If Clipboard has data then this will go into the loop
{
    string strData = (string)data.GetData(typeof(string));
StrData will be the copied data into the clipboard
}

 This part of code you have to call inside the event which you are trying to copy into clipboard like "Ctrl+C" or "Ctrl+X"

Regards
Ravi.Battula