Contents  All Classes  Index A-Z  All Units


TTeeExportFormat.Options
TTeeExportFormat

function Options(Check: Boolean): TForm; virtual;

Unit
TeeExport

Description
Show the Options dialogue for the export format.

The following example displays the options form for GIF export.

Example

Uses TeeGIF;

{$R *.DFM}

procedure TForm1.BitBtn1Click(Sender: TObject);
var tmp:TGIFExportFormat;
tmpOptionsForm:TForm;
begin
tmp:= TGIFExportFormat.Create;
tmp.Options.ShowModal;
tmp.Panel:=Chart1;
tmp.SaveToFile('c:\tempCharts\Chart1GIF.' + tmp.FileExtension);
end;



Submit your feedback about this page.

Copyright 1995-2007 © by Steema Software. All Rights Reserved.