TPCXExportFormat
 
 
 

All Units  All Classes  Properties, Methods and Events  

TPCXExportFormat
Hierarchy     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;




Send us Help Feedback. Copyright 1995-2013 © by Steema Software. All Rights Reserved.