1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2024-09-19 12:14:49 +00:00

Created Textbox (markdown)

FellippeHeitor 2016-12-21 18:23:03 -02:00
parent f9a6da541e
commit 3db556cdb4

28
Textbox.md Normal file

@ -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]]