RETURNS THE TEXT DISPLAYED BY THE SYSTEM OBJECT NUMBER N
ACTION
The function TEXT$(N) returns the text T displayed by the system object designated by its number N.
The system object is an EDIT or a COMBO.
Remark: the keyword TEXT$ ends by '$' because the returned value is a string.
SYNTAX:
Result$=TEXT$(N)
USE ERROR EXAMPLE
rem create an EDIT
edit 1
rem print the text entered by the user
print text$(1)
TEXT$()
TEXT$(N)
SEE ALSO
EDIT
COMBO
TEXT