private void btnSet_Click(object sender, EventArgs e)
{
Image bitmap = Bitmap.FromFile(@"C:\Users\Madhu\Pictures\vijay.bmp");
DataObject dataobj = new DataObject();
dataobj.SetText("Welcome to Dotnet Funda!");
dataobj.SetImage(bitmap);
Clipboard.SetDataObject(dataobj);
}
This sets both the text and image to the clipboard at a time.