Document Interation in EJ 1 ASP.NET MVC RichTextEditor
27 Apr 2018 / 1 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
@{
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 />
Document Interation in EJ 1 ASP.NET MVC RichTextEditor
27 Apr 2018 / 1 minute to read
The editor provides print tools which use to print the contents of the editor.
@{
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 />
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page