Textarea jump to
BlitzMax Forums/MaxGUI Module/Textarea jump to
| ||
Is it possible to scroll a textarea via code rather than user action? |
| ||
Yes that works using SelectTextAreaText. For example: SelectTextAreaText( YourTextArea:TGadget,(TextAreaText(YourTextArea).length),0 ) would jump to the end of the TextArea. |
| ||
Thanks |