New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Paragraph Styles

Telerik Web Parts for SharePoint 2010 last build was R1 2023 SP2 and is discontinued since then.

The Paragraph style dropdown of RadEditor displays a predefined set of styles by default. This set is defined by the Paragraphs collection. You can predefine the paragraphs in the Paragraphs collection by modifying the ToolsFile.xml / ListToolsFile.xml files, located in the following folder:

/Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/6.x.x.0__1f131a624888eeed/Resources/

For example:

<root>
 <tools name="MainToolbar">
   <tool name="FormatBlock" />
 </tools>
 <paragraphs>
   <paragraph name="Clear formatting" value="<body>" />
   <paragraph name="<H1>Heading 1</H1>" value="<H1>" />
   <paragraph name="<H2>Heading 2</H2>" value="<H2>" />
   <paragraph name="<H3>Heading 3</H3>" value="<H3>" />
   <paragraph name="<p class='redStyle'>redStyle</p>" value="<p class='redStyle'>" />
 </paragraphs>
</root>
In this article