Table of Contents

Enum ReportDocxLayout

Namespace
DocWright.Reporting.Export
Assembly
DocWright.Reporting.Export.dll

How a report's pages become a Word document.

public enum ReportDocxLayout

Fields

Fixed = 0

One Word section per report page, each holding a positioning grid: a borderless table whose columns and rows come from where the report's items are, with each item in the cell it occupies. The default, and the shape the reference implementation's own Word renderer produces.

A textbox is written as the lines the paginator laid out, one Word paragraph each, so Word shows the line breaks the PDF shows rather than breaking the text again against whatever fonts it has.

Flow = 1

One Word section per report page, with each item's text as flowing paragraphs and no grid.

A textbox is written as its paragraphs — the text before layout — so Word breaks the lines itself and the document can be edited afterwards like an ordinary one. Positions are not preserved: this is for a report that is going to be rewritten, not one that is going to be read as printed.