Class of single line text entry.
UIEdit(<value>) --> UIEdit object
| GETGEOMETRY | Get size and position of single line text entry. |
| GETVALUE | Get text from edit field. |
| READONLY | Set flag of protection against change content in edit field. |
| SETACTION | Set action executed on content changed. |
| SETGEOMETRY | Change size and/or position of single line text entry. |
| SETPASSWORD | Set flag of suppression normal echo characters while typing. Typed characters is shown as asterisk (for password define). |
| SETVALUE | Put text in edit field. |
| UIEDIT | Constructor. Create single line text entry. |
edit := UIEdit("Text...")
Andrey Cherepanov <<skull@eas.lrn.ru>>
No dependies of platform.
Get size and position of single line text entry.
getGeometry() --> <aRect>
No arguments
Array of elements: width, height, x, y in pixels respectively.
Get text from edit field.
getValue() --> <sText>
No arguments
Text from edit field. Type of returned value is string.
Set flag of protection against change content in edit field.
readOnly(<flag>)
Returns NIL.
Set action executed on content changed.
setAction(<action>)
Returns NIL.
Change size and/or position of single line text entry.
setGeometry(<geom>)
Returns NIL.
Set flag of suppression normal echo characters while typing. Typed characters is shown as asterisk (for password define).
setPassword(<flag>)
Returns NIL.
Put text in edit field.
setValue(<value>)
Returns NIL.
Constructor. Create single line text entry.
UIEdit(<value>) --> UIEditText object
Returns NIL.