Search results

Change document view in JavaScript DocumentEditor control

08 May 2023 / 1 minute to read

How to change the document view in DocumentEditor component

DocumentEditor allows you to change the view to web layout and print using the layoutType property with the supported LayoutType.

Copied to clipboard
let docEdit: DocumentEditor = new DocumentEditor({ layoutType: 'Continuous'});

Note: Default value of layoutType in DocumentEditor component is Pages.

How to change the document view in DocumentEditorContainer component

DocumentEditorContainer component allows you to change the view to web layout and print using the layoutType property with the supported LayoutType.

Copied to clipboard
let container: DocumentEditorContainer = new DocumentEditorContainer({ layoutType: "Continuous" });

Note: Default value of layoutType in DocumentEditorContainer component is Pages.