Sets the text as it was entered by user (focus, change value, defocus). The value.
(string value)
| 488 | /// </summary> |
| 489 | /// <param name="value">The value.</param> |
| 490 | [NoAnimate] |
| 491 | public void SetTextAsUser(string value) |
| 492 | { |
| 493 | Focus(); |
| 494 | SetText(value); |
| 495 | RemoveFocus(); |
| 496 | } |
| 497 | |
| 498 | /// <summary> |
| 499 | /// Gets length of the text |
no test coverage detected