GxImage.CreateFromClipboard

Fore Syntax

CreateFromClipboard;

Fore.NET Syntax

CreateFromClipboard();

Description

TheCreateFromClipboard constructor creates an image from the clipboard.

Fore 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.

Fore.NET Example

Imports Prognoz.Platform.Interop.Drawing;

Function GetImageFromClipboard(): GxImage;
Var
    Img: GxImage = New GxImageClass_2();
Begin
    Img.CreateFromClipboard();
    Return Img;
End Function;

The function returns the image obtained from the clipboard.

See also:

GxImage