GxImage.CreateFromClipboard

Syntax

CreateFromClipboard;

Description

TheCreateFromClipboard constructor creates an image from the clipboard.

Example

Function GetImageFromClipboard: IGxImage;
Var
    Img: IGxImage;
Begin
    Img := New GxImage.CreateFromClipboard;
    Return Img;
End Function GetImageFromClipboard;

The function returns the image obtained from the clipboard.

See also:

GxImage