Hi,
What is the best way for selected all text on UltraCurrencyEditor when the user clic on it ?
There are property for that ?
Same thing of CellClickAction.EditAndSelectText on the UltraGridWin
Or only on the event click
private void uceAmount_Click(object sender, EventArgs e) { uceAmount.Editor.SelectAll(); }
Francois.
Hi Francois,
Using the Click event is the recommended way to respond to a user clicking the control.
There is currently no property setting that you can use to have an UltraCurrencyEditor exhibit this behavior automatically.
Ok.
But only way is to use event click ?
Or you are property for that ?
In order to select the text on the UltraCurrencyEditor, you can use the SelectAll method directly on the control. Instead of calling it through the editor, try
uceAmount.SelectAll();
Please let me know if you have any further questions.