Hi,
To set the zoom of the editor body, you can use the code below. It will fire when the editor load. 3 means 300%.
Note that, this code only use to change the zoom of the editor body, it will not change the "zoom" section at the bottom bar.
- <script type="text/javascript">
-
- function RichTextEditor_OnLoad(rteeditor) {
- rteeditor.GetWindow().document.body.style.zoom = 3;
- }
- </script>
Regards,
Ken