Re: Zoom factor - store / set?

  •  04-12-2013, 12:12 PM

    Re: Zoom factor - store / set?

    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. 

     

    1. <script type="text/javascript">  
    2.       
    3.     function RichTextEditor_OnLoad(rteeditor) {  
    4.         rteeditor.GetWindow().document.body.style.zoom = 3;  
    5.     }  
    6. </script>  
     

    Regards,

     

    Ken 

View Complete Thread