GxBitmap.CreateFromClipboard

Syntax

CreateFromClipboard;

Description

The CreateFromClipboard constructor creates a bitmap from the clipboard.

Example

Function GetBmpFromClipboard: IGxBitmap;
Var
    Bmp: IGxBitmap;
Begin
    Bmp := New GxBitmap.CreateFromClipboard;
    Return Bmp;
End Function GetBmpFromClipboard;

The function returns the image obtained from the clipboard.

See also:

GxBitmap