New to Telerik Document ProcessingStart a free 30-day trial

Choosing Between RadFlowDocumentEditor, RadFixedDocumentEditor, and FixedContentEditor

Updated on Jul 21, 2026

Environment

VersionProductAuthor
2026.2.707PdfProcessing and WordsProcessingYoan Karamanov

Description

You need to decide between RadFlowDocumentEditor, RadFixedDocumentEditor, and FixedContentEditor for document generation with the Document Processing Libraries. The three editors serve different layout models, come from different libraries, and offer different levels of control and convenience.

Solution

Use this rule first:

  • Choose RadFlowDocumentEditor when your source model is Word-like flow content (RadFlowDocument) and you need high-level editing.
  • Choose RadFixedDocumentEditor when your output is PDF and you need flow-like authoring with automatic pagination.
  • Choose FixedContentEditor when your output is PDF and you need precise, coordinate-based placement.

Library and Model Differences

LibraryMain document modelWhat it is best atFormat notes
RadWordsProcessingRadFlowDocumentWord-processing scenarios: rich text, sections, paragraphs, fields, tablesSupports multiple import and export formats. PDF support is export only.
RadPdfProcessingRadFixedDocumentNative PDF creation/import/edit/exportDesigned for fixed-layout PDF content and page-level control.

Editor Comparison

EditorLibraryLayout behaviorProsConsBest use cases
RadFlowDocumentEditorRadWordsProcessingFlow-based in Word document modelHigh productivity API; inserts content in logical order; good for structured document generationNot a PDF-native editor; final PDF output depends on WordsProcessing PDF export capabilitiesDOCX-first generation, templates, mail-merge-like content assembly
RadFixedDocumentEditorRadPdfProcessingFlow-like authoring for PDF with automatic sizing and page flowLess manual layout work; convenient for text-heavy PDF reports; handles page flow automaticallyLess absolute control than coordinate-based drawingPDF reports, invoices, catalogs, long flowing documents
FixedContentEditorRadPdfProcessingFixed positioning on a specific PDF page/content rootMaximum control over exact placement, size, transforms, and drawingYou must manage coordinates, available space, and overlap/cropping risks manuallyPixel-precise layout, overlays, stamps, custom graphics, form-like positioned content

Practical Guidance

If you create content similar to a Word document, start with RadFlowDocumentEditor. If you create a PDF directly and need easier layout flow, use RadFixedDocumentEditor. If exact XY placement is mandatory, use FixedContentEditor.

For Word-to-PDF conversion scenarios, RadWordsProcessing exports PDF based on its supported feature matrix. If a source document uses unsupported or partially supported features, visual differences can appear in exported PDF. Review Formats and Conversion for details.

See Also