Class for multi-line text editor.
UIEditText(<value>) --> UIEditText object
GETGEOMETRY | Get size and position of multi-line text editor. |
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 multi-line text editor. |
SETVALUE | Put text in edit field. |
UIEDITTEXT | Constructor. Create multi-line text editor. |
editBox := UIEditText()
Andrey Cherepanov <<skull@eas.lrn.ru>>
No dependies of platform.
Get size and position of multi-line text editor.
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 multi-line text editor.
setGeometry(<geom>)
Returns NIL.
Put text in edit field.
setValue(<value>)
Returns NIL.
Constructor. Create multi-line text editor.
UIEditText(<value>) --> UIEditText object
Returns NIL.