Set edit uicontrol to last line

15 次查看(过去 30 天)
I used to do this by using:
h = uicontrol(....);
j = findjobj(h);
je = j.getComponent(0).getComponent(0);
je.setCaretPosition(je.getDocument.getLength);
Now I have Matlab 2015a and this is not working. Previously I downloaded findjobj from the exchange. I can no longer do this do to policy restrictions at work.
The situation I have is a figure that is displaying an edit uicontrol to act as a log for an application. I want the editbox to always show the last line. How can I do this? Is there a better control to use or a way to set the slider position to the end?

采纳的回答

Walter Roberson
Walter Roberson 2015-11-17
put a uicontrol('style','text') inside a uipanel and keep resizing it to be large enough to hold all current text. Create a scroll bar that adjusts the Position of the uicontrol within the uipanel.
It can be easier to work things out properly by having a uipanel 'B' inside a uipanel 'A', with the scroll bar in 'A' adjusting the Position of 'B' relative to 'A', with the uicontrol('style','text') inside B.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by