Using the Default Skin
Telerik RadEditor is configured to use the Default skin and you do not need to anything to set it. The default skin files are located in the /RadControls/Editor/Skins/Default folder.
Setting Skin other than default
To change the default skin of Telerik RadEditor, use the Auto Format tool available in Visual Studio Design mode. Just right click on the editor and select the Auto Format context menu item. This will pop up a dialog, which will allow you to choose the desired skin from the available list of skins:

Of course, you can change the skin manually by setting the SkinsPath property path to the new Skins folder as well as setting the Skin property to the new skin name. The default location of the Skins folder is /RadControls/Editor/Skins/:
| ASPX/ASCX |
Copy Code |
|
<rad:radEditor Id="RadEditor1" Runat="server" SkinsPath="~/RadControls/Editor/Skins" Skin="Office2007"></rad:radEditor> |
See Also