secureTextEntry
| 854 | |
| 855 | // secureTextEntry |
| 856 | void TextFieldEx::setPasswordEnabled(bool value) |
| 857 | { |
| 858 | if (_secureTextEntry != value) |
| 859 | { |
| 860 | _secureTextEntry = value; |
| 861 | this->setString(this->getString()); |
| 862 | __updateCursorPosition(); |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | bool TextFieldEx::isPasswordEnabled() const |
| 867 | { |