Hello
In a document editor is it possible to control the zoom state of the displayed document. The closest I have found is on the created event to set:
EditorContainer.DocumentEditor.ZoomFactor = 0.30;
Ther are 2 problems with this:
1) It tells me that that this property should not be set outside of the component (it still works)
2) It does not allow me to set to "Fit One Page" or "Fit Page Width" as can be done through the UI. This is important because the ZoomFactor will depend on the size if the device being used, i.e. if viewed on mobile (Maui).
Any ideas?
Thank you