Hi Planet Maine,
Option 1:
Use properties TemplateItemList. The below editor will only show three button in the toolbar.
<CE:Editor ID="editor1" runat="server" TemplateItemList="Save,Find,Copy">
</CE:Editor>
Option 2:
Using config file to customize toolbar, you need to set properties ConfigurationPath,like below.
<CE:Editor ID="editor1" runat="server" ConfigurationPath="~/test.config" >
</CE:Editor>
In my case, I create a file name "test.config" under the root of my site.
code of test.config
-
<?xml version="1.0" encoding="utf-8" ?>
-
<configuration>
-
<codeviewToolbars>
-
<item type="g_start" />
-
<item type="image" name="Save" postback="True" />
-
<item type="image" name="Print" />
-
<item type="image" name="Find" />
-
<item type="image" name="ToFullPage" command="FullPage" imagename="fit" hotkey="F12" />
-
<item type="image" name="FromFullPage" command="FullPage" imagename="restore" hotkey="F12" />
-
<item type="image" name="Cut" />
-
<item type="image" name="Copy" />
-
<item type="image" name="Paste" />
-
<item type="image" name="SelectAll" hotkey="CTRL+A" />
-
<item type="image" name="SelectNone" />
-
<item type="g_end" />
-
</codeviewToolbars>
-
<toolbars>
-
<item type="image" name="CleanCode" imagename="cleanup" />
-
<item type="image" name="NetSpell" imagename="spell" />
-
<item type="image" name="Cut" />
-
<item type="image" name="Copy" />
-
</toolbars>
-
</configuration>
Regards,
ken