Glossary Item Box
Many functions of Editor are accessible via the toolbars, context menus (accessible through a right-click menu in the content area). This section contains reference documentation for all of the toolbars customization.
You can easily customize toolbar layout using ToolbarLayout and ToolbarHTMLModeLayout properties.
| Menu/Button | Function Description | Layout Item |
| saves the active content in the editor's content area | postback | |
| prints the current page. | ||
| find and replace the text in the editor's content area | findreplace | |
| edit in full screen mode, maximizing your available space. | fullscreen | |
| clean up all "garbage" HTML-tags | cleancode | |
| launch the spell checker | spell | |
| performs normal function of cutting. | cut | |
| copy the current selection and store it in the clipboard. | copy | |
| insert content from the clipboard into the editor at the selected position. | paste | |
| paste the plain text (no formatting) into the editor. | pastetext | |
| paste the content copied form the microsoft word and remove the web-unfriendly tags | pasteword | |
Undo |
undo the last operation in the editor. | undo |
Redo |
redo the last operation in the editor. | redo |
| edit style of the current tag | editstyle | |
| removes the style of the tag | removestyle | |
| insert the new paragraph | newparagraph | |
Break |
insert the line break. | break |
| insert print page break | pagebreak | |
| Insert the current date. The date format used is the date format configured on the clientas machine. | date | |
| Insert the current time. The time format used is the time format configured on the clientas machine. | time | |
| make table borders visible, which can make editing easier. | showborders | |
| insert a special character from a predefined list. | insertsymbol | |
| insert an emotion image at the selected position in the editor. | insertsmile | |
| document statistics | showstat | |
Universal keyboard |
show universal keyboard | unikeyb |
| allows you to insert, edit, or reposition text regions. | inserttext | |
| allows you to a group box (FieldSet) at the selected position in the editor | fieldset | |
| insert an image at the selected position in the editor and let you set its properties. | insertimage | |
Image map |
edit or insert image map for selected image | imagemap |
| insert a flash animation at the selected position and let you set its properties. | insertflash | |
| insert a windows media object at the selected position and let you set its properties. | insertmedia | |
| insert iframe tag | insertiframe | |
| insert a table into your web page. | inserttable | |
| insert a row above the selected row. | insertrow | |
| delete the selected row. | deleterow | |
| insert a column to the left of the selected cell. | insertcolumn | |
| delete the selected column. | deletecolumn | |
| insert cells into the selected row. | insertcell | |
| delete the selected cell. | deletecell | |
| edit row properties | rowproperty | |
| edit cell properties | cellproperty | |
Column properties |
edit properties of the cells in table column | columnproperty |
| merge the current cell with the one to its right. | mergecell | |
| Split a cell into rows | splitcell | |
| insert a form at the selected position | This items in the Form select list | |
| insert a textarea at the selected position | ||
| insert a input text box at the selected position | ||
| insert a password field at the selected position | ||
| insert a hidden field at the selected position | ||
| insert a list box at the selected position | ||
| insert a radio button at the selected position | ||
| insert a checkbox at the selected position | ||
| insert an image button at the selected position | ||
| insert a submit button at the selected position | ||
| insert a reset button at the selected position | ||
| edit form element properties | editelement | |
Bold |
bold the selected text. | bold |
Italicize |
italicize the selected text. | italic |
| underline the selected text. | underline | |
| align the selected content to the left. | justifyleft | |
| center the selected content. | justifycenter | |
| align the selected content to the right | justifyright | |
Justify None |
Justify Full | justifyfull |
| remove format of the selected text. | removeformat | |
Font Color |
change color of the selected text | forecolor |
Highlight |
highlight the selected text | backcolor |
| insert an ordered list. | insertorderedlist | |
| Insert an unordered list. | insertunorderedlist | |
| edit list style | liststyle | |
Indent |
indent the selected content. | indent |
Outdent |
outdent the selected content. | outdent |
Subscript |
change the selected text to subscript. | subscript |
Superscript |
change the selected text to superscript. | superscript |
| strike through the selected text | strikethrough | |
Upper Case |
convert the selected text to upper case | ucase |
Lower Case |
convert the selected text to lower case | lcase |
| insert a horizontal rule at the selected position in the editor. | inserthorizontalrule | |
| add a link to the text on your page. | createlink | |
Remove Link |
remove the hyperlink from the selected content. | unlink |
Select All |
select all content. | selectall |
| fly text, pictures, tables... any element anywhere you want. | absoluteposition | |
| bring an item one position forward at a time. | sendforward | |
| send an item one position back at a time. | sendbackward | |
| toggle the visibility of borders | visibleborders | |
| allow you modify the page properties | editpage | |
Help |
Returns a help Toolbar Button. The help page URL is set by the HelpUrl Property. | help |
| class drop-down changes the CSS class of the selected text | classselect | |
| paragraph drop-down changes the paragraph style of the selected text. | paragraphnameselect | |
| font drop-down set the font face. If a selection is active, the font will be applied to it. | fontselect | |
| size drop down set the font size. If a selection is active, the font will be applied to it. | fontsizeselect | |
| form elements list | formselect | |
| insert predefined HTML code snippets on the current selection. | snippetselect |
On the toolbar you can see the buttons with drop-down arrows - ![]()
forecolor button ![]()
- backcolor button ![]()
- inserttable button
When you clicks on the arrow you will see the pop-ups for selecting a color or for easily table creation
ColorPicker for selecting color of text or background color:

Table-creating pop-up for creating new table on-the-fly:
You can easily add your own custom buttons to the Editor toolbar using the toolbar layout editor in the component properties list.
The CSS Class dropdown of Editor displays a predefined set of CSS Classes. You can easily add your own CSS Classes using the following method.
In the CS file:
| Editor1.AddCssClass("<span style='color: red;' unselectable='on'>Red text</span>", "txtred", "color: red;"); Editor1.AddCssClass("<b style='color: green;' unselectable='on'>Bold green text</b>", "txtgreen", "color: green; font-weight: bold;"); |
After adding this lines to the code you will see next list of the classes:

The Snippets dropdown of Editor by default displays a predefined set of Code Snippets. You can easily modify this default set using the following method.
| Editor1.AddSnippet("Simple snippet", "<b>Simple snippet</b>"); Editor1.AddSnippet("Contact", "<br />TestCompany<br />40, Main St, apt. 105<br />Baltimore, Maryland 21201"); Editor1.AddSnippet("Copyright", "<i>Copyright 2004 WebSolution Ltd. All rights reserved.</i>"); |
After adding this lines to the code you will see next list of the snippets:

Editor can assign keyboard shortcuts to every tool. The shortcut mechanism overrides the default shortcuts of the browser, like Ctrl+B, Ctrl+I, Ctrl+U, Ctrl+F, Ctrl+P, to allows the use of combinations for custom purposes.
| Ctrl+B | |
| Ctrl+I | |
| Ctrl+U | |
| Ctrl+F | |
| Ctrl+P |
You can configure Editor's toolbar using Toolbar editor. Open Editor tasks window and select "Configurate Toolbar Layout" item.

In the opened toolbar editor you can set Editor toolbar as you need. You can drag any button from middle panel and drop it on any toolbar line in top panel. Also you can add custom button using this dialog.
| See Also |
Client-side API: Editor client-side API