Question
How to read value of textArea?
Hello!
I have Scrollist with customcontainer, which contains textArea1 widget
I set text while working
Unicode::UnicodeChar buffer[20];
Unicode::strncpy(buffer, FileList[data], 20);
Unicode::snprintf(textArea1Buffer, 20, "%s", buffer);
textArea1.setWildcard(textArea1Buffer);
textArea1.invalidate();How can I read text?
Please give me syntax of it, I tried getTypedText, but wothout success...
