Vcl.Imaging.jpeg.TJPEGImage.SaveToClipboardFormat

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

procedure SaveToClipboardFormat(var AFormat: Word; var AData: THandle;  var APalette: HPALETTE); override;

C++

virtual void __fastcall SaveToClipboardFormat(System::Word &AFormat, NativeUInt &AData, HPALETTE &APalette);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Imaging.jpeg.pas
Vcl.Imaging.jpeg.hpp
Vcl.Imaging.jpeg TJPEGImage

Description

Writes a jpeg image to a variable in Clipboard format.

Use SaveToClipboardFormat to save the jpeg image to a variable. The palette is returned as the APalette parameter, the format as the Aformat parameter, and the data as the AData parameter. Before the jpeg image can be saved, an application must have registered the format with the TJPEGImage object using the RegisterClipboardFormat method.

See Also