TccDocument.SaveToFile

Parameter

(FileName : String; const CreateZip : Boolean = false) : Boolean;

Beschreibung

Mit SaveToFile wird das aktuelle Dokument in eine Datei gespeichert (clarc Document XML). Dabei kann optional ein Zip erzeugt werden.

Beispiel

Document := TccDocument.Create; 
try   
  Document.LoadFromQueue('2081D3B7BEE34D29811C0FDD8670B40E');   
  Document.SaveToFile('c:\temp\example.xml',false); 
finally   
  Document.Free; 
end;