Skip to content

Writer

Represents a document writer for "docx", "html", "pdf", "rtf" and "xml" file types.

1
const Writer;

Remarks

Example

1
2
3
4
5
6
var writer = new Writer();
var section = writer.Sections.Add();
var paragraph = section.Blocks.AddParagraph();
var run = paragraph.Inlines.AddRun();
run.Text = 'Emakin';
writer.SaveToBase64('.pdf');