TTeeExportFormat.CopyToClipboard
TTeeExportFormat
procedure CopyToClipboard;
Unit
TeeExport
Description
CopyToClipboard is used by descendant classes to copy their export to Clipboard.
Example:
procedure TForm1.Button1Click(Sender: TObject);
var tmpPNG : TPNGExportFormat;
begin
tmpPNG:=TPNGExportFormat.Create;
With tmpPNG do
begin
Panel:=Chart1;
CopyToClipboard;
end;
end;