CreateFromClipboard;
CreateFromClipboard();
TheCreateFromClipboard constructor creates an image from the clipboard.
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.
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: