How to disable optimized text measuring in Document Editor component
5 Apr 20221 minute to read
Starting from v19.3.0.x, the accuracy of text size measurements in Document editor is improved such as to match Microsoft Word pagination for most Word documents. This improvement is included as default behavior along with an optional API enableOptimizedTextMeasuring
in Document editor settings.
If you want the Document editor component to retain the document pagination (display page-by-page) behavior like v19.2.0.x and older versions. Then, you can disable this optimized text measuring improvement, by setting false
to enableOptimizedTextMeasuring
property of Document Editor component.
Disable optimized text measuring in DocumentEditorContainer
instance
The following example code illustrates how to disable optimized text measuring improvement in DocumentEditorContainer
instance.
<div id="documenteditor" style="width:100%;height:100%">
@Html.EJS().DocumentEditor("container").IsReadOnly(false).EnableEditor(true).EnablePrint(true).EnableSelection(true).EnableSfdtExport(true).DocumentEditorSettings("settings").Render()
</div>
<script>
var settings = { enableOptimizedTextMeasuring: false };
</script>
Disable optimized text measuring in DocumentEditor
instance
The following example code illustrates how to disable optimized text measuring improvement in DocumentEditor
instance.
@Html.EJS().DocumentEditorContainer("container").EnableToolbar(true).DocumentEditorSettings("settings").Render()
<script>
var settings = { enableOptimizedTextMeasuring: false };
</script>