Writer

Overview

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

Example

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');

Copyright © 2010 - 2023 Emakin. All rights reserved.