Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Overview

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

Example

var writer = new Writer();
var section = writer.Sections.Add('Section');
var paragraph = section.Blocks.Add('Paragraph');
var run = paragraph.Inlines.Add('Run');
run.Text = 'Emakin';
writer.SaveToBase64('.pdf');
  • No labels