MATLAB: How to programmatically scroll down multiline edit box

edit boxscroll down

When writing in a multiline edit box I would like to get it scrolled down automatically. How can I do ?

Best Answer

I seem to recall that Yair Altman has a way to do it by going in at the Java level. See his UndocumentedMatlab site .
There is no supported method of doing it.
Well, not that would be acceptable to most people. If you put the edit box inside of a uipanel and set the panel to clipping, you can set the Position of the edit box within the uipanel in order to scroll / pan the edit box. Getting this to work in concert with the scroll bars of the edit box is whole other problem...