Hi,
I'm using the Document Editor as a viewer to display as read-only previously saved document.
I'm setting the control as:
<SfDocumentEditorContainer @ref="container" Height="600px" LayoutType="LayoutType.Continuous" EnableToolbar=false ShowPropertiesPane="false" ToolbarItems="@ItemsEmpty" RestrictEditing="true">
<DocumentEditorContainerEvents Created="OnCreated" >
</DocumentEditorContainerEvents>
</SfDocumentEditorContainer>
In the
OnCreated method I load the content of the document.
If I set Height="100%", it sets the height to 100% of the view port, not the document content.
I want to set the Height of the container to the full length of the document and avoid any scrollbars appearing.
Is this possible?
Regards,