Zoom

27 Apr 20181 minute to read

The editor provides zoom tools which enlarges the view of an editor’s object enabling you to see more detail. You can continuous zoomIn and zoomOut either using zoom tools or keyboard.

You can assign Increases and decreases of zooming range using zoomStep property

  • HTML
  • @{
        List<String> toolsList = new List<string>() { "view" };
        List<String> view = new List<string>() { "zoomIn","zoomOut" };
    }
    @{Html.EJ().RTE("rteSample").Width("800px").ZoomStep("0.05").ContentTemplate(@<div>
        The Rich Text Editor
        (RTE) control is an easy to render in client side. Customer easy to edit the contents
        and get the HTML content for the displayed content. A rich text editor control provides
        users with a toolbar that helps them to apply rich text formats to the text entered
        in the text area.
    </div>)
    .ToolsList(toolsList)
    .Tools(tool => tool.View(view))
    .Render();}
    <br />

    Print

    27 Apr 20181 minute to read

    The editor provides print tools which use to print the contents of the editor.

  • HTML
  • @{
        List<String> toolsList = new List<string>() { "print" };
        List<String> print = new List<string>() { "print" };
    }
    @{Html.EJ().RTE("rteSample").Width("800px").ContentTemplate(@<div>
        The Rich Text Editor
        (RTE) control is an easy to render in client side. Customer easy to edit the contents
        and get the HTML content for the displayed content. A rich text editor control provides
        users with a toolbar that helps them to apply rich text formats to the text entered
        in the text area.
    </div>)
    .ToolsList(toolsList)
    .Tools(tool => tool.Print(print))
    .Render();}
    <br />