DisplayFromClipboard Method (GdViewer)
Loads an image, which is currently stored in the clipboard, and then displays it in the GdViewer control. The document previously displayed in the control will automatically close.
The GdViewer.BeforeDocumentChange and the GdViewer.AfterDocumentChange events are raised just before and right after the image is displayed in the GdViewer control. Both events are only raised if the image has been successfully loaded.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.
How to display the image copied in the clipboard.
'We assume that the GdViewer1 control has been properly integrated.
If GdViewer1.DisplayFromClipboard() = GdPictureStatus.OK Then
'Do your stuff here.
Else
MessageBox.Show("No image data are stored in the clipboard.", "GdViewer.DisplayFromClipboard")
End If
//We assume that the GdViewer1 control has been properly integrated.
if (GdViewer1.DisplayFromClipboard() == GdPictureStatus.OK)
{
//Do your stuff here.
}
else
{
MessageBox.Show("No image data are stored in the clipboard.", "GdViewer.DisplayFromClipboard");
}