From 3db556cdb44e602dec912816955431639a5fff36 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Wed, 21 Dec 2016 18:23:03 -0200 Subject: [PATCH] Created Textbox (markdown) --- Textbox.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Textbox.md diff --git a/Textbox.md b/Textbox.md new file mode 100644 index 0000000..760f62a --- /dev/null +++ b/Textbox.md @@ -0,0 +1,28 @@ +TextBox controls are used to receive text input from the user. + +With the PasswordField property you can mask the text typed by the user using Unicode character ● (UTF-8 e2978f). + +To read what was typed, use the Text() array: + + Var$ = Text(ControlID) + +###[[Events]] +* [[Click|Mouse events#click]] +* [[MouseDown/MouseUp|Mouse events#mousedownmouseup]] +* [[MouseEnter/MouseLeave|Mouse events#mouseentermouseleave]] +* [[TextChanged]] + +###[[Properties]] editable at runtime +* [[Align]] +* [[VAlign|Align]] +* [[HasBorder]] +* [[Caption]] +* [[Top/Left/Width/Height|Position and size]] +* [[Font]] +* [[WordWrap]] +* [[PasswordField]] +* [[Tool tip]] +* [[ForeColor]] +* [[Disabled]] +* [[BackStyle]] +* [[Hidden]] \ No newline at end of file