SpiceLogic .NET Win HTML Editor Control
Online Documentation.

Skip Navigation Links.

Using your own toolbars in your Windows Form replacing the Editor Toolbars.

As we have shown you can add your own toolbar items on the toolstrip Controls. You can also use your own toolbar items instead of default factory toolbar items. For example you may want to add a custom InsertHtml button, and place it in the place before the factory Bold button. What you need to do is simply Delete the toolbar and add your own toolbar. Then Add the factory items you would like to keep and also add your own toolbar item in the preferred position you like. You may follow the following steps to place your own item at the desired position,

 

Step 1: Delete the factory toolbars from the component tray by selecting the toolbar you want to delete and pressing the Delete button..

 

Step 2: Add a new ToolStrip Control to the form.

Step 3: Create your own toolbar button.

Step 4: Add the factory items you would like in the form's Load event.

Step 5: Add your own toolbar button (before the Bold factory button in this example).

 

Step 6: You can call any factory public methods or your own method to the newly placed custom item. Here we use the method InsertHtml.

Below is what we have done,