Is it possible to read out information from EditTextField line to line?

Is it possible to read out information from EditTextField line to line?

Post by Alex Truul » Sat, 24 Sep 2005 21:52:21


Hi,
have another question:
Is it possible to read out information from EditTextField line to
line?
Something with:

outputtext_string=get(handles.outputtext,'string')

but how can i tell this function that it has to resd only the first
line,then only the second and so on?

Thank you for your help

Alex
 
 
 

Is it possible to read out information from EditTextField line to line?

Post by per isakso » Sun, 25 Sep 2005 05:45:45


You'll get all lines and need to split up outputtext_string
afterwards. It's simple since outputtext_string will be a cell array
of strings.

/ per