Is it possible to include an editor button in a TextBoxTool in a toolbar, similar to what can be done with a regular text editor control?
I want to implement a search box that will have a 'clear search' button come up when a search is performed. It occurred to me that an editor button on the right of the box would be perfect, but it doesnt appear this is possible. Any other good solution if this isnt possible?
This is not possible with the TextBoxTool. The best way to do what you are trying to do would be to define an UltraTextEditor control on the Form and add your editor button to it. Then add a ControlContainerTool to the UltraToolbarsManager and set its Control property to your UltraTextEditor.