GxMetafile.CreateFromClipboard

Syntax

CreateFromClipboard;

Description

The CreateFromClipboard constructor creates a Windows metafile from the clipboard.

Example

Function GetMetafileFromClipboard: IGxMetafile;
Var
    Mtf: IGxMetafile;
Begin
    Mtf := New GxMetafile.CreateFromClipboard;
    Return Mtf;
End Function GetMetafileFromClipboard;

The function returns the metafile obtained from the clipboard.

See also:

GxMetafile