Good day.
There are two cases:
When a user clicks a text box on a form, how to make the text stand out?
GridControl (DevExpress) - a grid in which column the user can enter text. By default, there is already the text "0.00". How to make that when the user activates a cell (clicks there with the mouse) all the text stands out?
I suspect that it is done in a similar way.
Thank.
UPD
The solution to the issue was suggested to me by Javascript:
textBox1.Select (0, textBox1.Text.Length);
??