Contents
- How to change the document view in DocumentEditor component
- How to change the document view in DocumentEditorContainer component
Having trouble getting help?
Contact Support
Contact Support
Change document view in Vue Document editor component
16 Mar 20231 minute to read
How to change the document view in DocumentEditor component
Document Editor allows you to change the view to web layout and print using the layoutType
property with the supported LayoutType
.
<ejs-documenteditor :layoutType='Continuous' id='container'></ejs-documenteditor>
Note: Default value of
layoutType
in Document Editor component isPages
.
How to change the document view in DocumentEditorContainer component
Document Editor Container component allows you to change the view to web layout and print using the layoutType
property with the supported LayoutType
.
<ejs-documenteditorcontainer :layoutType='Continuous' id='container'></ejs-documenteditorcontainer>
Note: Default value of
layoutType
in Document Editor Container component isPages
.