pascalabcnet/TestSamples/CompilationSamples/AodlTest.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

12 lines
457 B
ObjectPascal

{$reference 'AODL.dll'}
uses System, AODL.Document, AODL.Document.TextDocuments, AODL.Document.Collections, AODL.Document.Content.Text;
var doc : TextDocument;
pCollection : ParagraphCollection;
begin
doc := new TextDocument();
doc.New();
pCollection := ParagraphBuilder.CreateParagraphCollection(doc,'Privet world!',true,ParagraphBuilder.ParagraphSeperator);
foreach p : Paragraph in pCollection do
doc.Content.Add(p);
doc.SaveTo('Letter.odt');
end.