TiPlotComponent.CopyToClipboardFormat

TiPlotComponent

Specifies the style of data that will used when the CopyToClipboard method is called.

type TiPlotExportFormat = (ipefMetaFile, ipefBitmap, ipefJPEG);

property CopyToClipboardformat : TiPlotExportFormat;

Description

Use CopyToClipboardformat to get or set the style of data that will used when the CopyToClipboard method is called.

These are the possible values:

Value
Meaning
ipefMetaFile
Image Format: Windows Enhanced Metafile Image
ipefBitmap
Image Format: Windows Bitmap Image
ipefJPEG
Image Format: JPEG Compressed Image (100% quality, Non-Interlaced). Note: currently, this style actually runs the image through JPEG compression and then passes it as a regular Bitmap to the clipboard.

Example

Delphi

iComponent.CopyToClipboardFormat := ipefBitmap;

C++ Builder

iComponent->CopyToClipboardFormat = ipefBitmap;

Contents | Index | Previous | Next