From e6080aa9f7381926c60805feb1009d5c053fbead Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Fri, 13 Jan 2017 09:15:32 -0300 Subject: [PATCH] Created PasswordField (markdown) --- PasswordField.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 PasswordField.md diff --git a/PasswordField.md b/PasswordField.md new file mode 100644 index 0000000..6c3f1a6 --- /dev/null +++ b/PasswordField.md @@ -0,0 +1,6 @@ +With the PasswordField property you can mask the text entered by the user in a [[Textbox]] control using Unicode character ● (UTF-8 e2978f). + +Set it at design time using the editor or at run time as follows: + Control(TextBox1).PasswordField = True + +A common practice is to associate a password textbox with a checkbox that allows the user to Hide/Show their input, for quick spell checking. \ No newline at end of file