Accusoft.ImagXpress12.Net
Copy & Paste Image Using the Clipboard
See Also Send Feedback
ImagXpress 12 for .NET - User Guide > How To > View an Image > Capture, Copy, and Paste > Copy & Paste Image Using the Clipboard

Glossary Item Box

Copy an ImageX Object to the Clipboard

The following example illustrates how to copy an image to the clipboard:

C# Example Copy Code
// This code demonstrates how to assign an image object to a viewer
ImageXView1.Image = sourceImageX;
// copy the image to the clipboard
ImageXView1.CopyToClipboard();
// the clipboard now contains a copy of the sourceImageX object.

 

Paste an Object from the Clipboard to an ImageX Object

The following example illustrates how to paste an object from the clipboard to an ImageX object:

C# Example Copy Code
// This code demonstrates how to assign an image object to a viewer
ImageXView1.Image = targetImageX;
// paste the image from the clipboard
ImageXView1.PasteFromClipboard();
// the targetImageX object now has the image from the clipboard.

 

See Also

©2013. Accusoft Corporation. All Rights Reserved.