I have an UltraTextEditor which has two buttons in the ButtonsRight collection.
I know that there is an event called EditorButtonClick, for handling the click event, but how do I handle clicks for these two buttons in code??
Hi,
The EditorButtonClick will fire for both buttons. The event args will give you the button that was clicked so you can distinguish between the two. The best thing to do is to assign each button a unique Key value, so you can use the Key to identify which is which.