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;