TPCXExportFormat

TPCXExportFormat
Hierarchy     Properties     Methods     

Unit
TeePCX

Description
Use TPCXExportFormat to create and export the TeeChart in PCX format. The Class returns default export characteristics to be used when exporting a PCX image of the Chart.

TPCXExportFormat uses the PCX unit Copyright Software Matters Inc. 1991-2000
Please see their web http://www.smatters.com for more information.



Example of use

Uses TeePCX;

procedure TForm1.BitBtn1Click(Sender: TObject);
var tmp:TPCXExportFormat;
begin
tmp:= TPCXExportFormat.Create;
tmp.Panel:=Chart1;
tmp.SaveToFile('c:\tempCharts\Chart1PCX.' + tmp.FileExtension);
tmp.Free;
end;