TccDocument.SaveToFile
- Merve Yurdakul
- Former user (Deleted)
Owned by Merve Yurdakul
Sept. 05, 2017
1 min read
Loading data...
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;