Hi,
for a button it is possible to write button.PerformClick. Is there something similar for EditorButtons ?
Thanks
Hansjörg Wintermantel
I don't think that there is an easy way to simulate the button click. You could certainly do so through the Accessibility model, though I don't think there's an easy way to find a particular button. In my case, the following code works when I had one button in the ButtonsRight collection:
this.ultraTextEditor1.AccessibilityObject.GetChild(0).GetChild(1).DoDefaultAction();
-Matt