GUIDE Static Text - Right Align Cuts Off Text

조회 수: 5 (최근 30일)
Matt
Matt 2013년 1월 4일
댓글: Walter Roberson 2020년 3월 8일
I have created a series of right-aligned static text boxes to display numbers. The right-align is so that the decimal points are aligned. For some reason the last digit is slightly cut off. Has anyone dealt with this? I'd rather not have to add a space every time I write a number to these boxes. Thanks
-Matt

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 1월 4일
편집: Azzi Abdelmalek 2013년 1월 4일
Increase the size of your edit text box
pos=get(handles.edit1,'position')
pos(3)=pos(3)+10 % you will increase just the width
set(handles.edit1,'Position',pos)
you can also determine the number of digit to adjust the size of your edit text box
  댓글 수: 2
Matt
Matt 2013년 1월 4일
This has no effect. The text box is already quite a bit larger than needed.
Azzi Abdelmalek
Azzi Abdelmalek 2013년 1월 4일
then reduce the fontsize
set(handles.edit1,'FontUnits','point');
set(handles.edit1,'Fontsize',yoursize)

댓글을 달려면 로그인하십시오.


Sean de Wolski
Sean de Wolski 2013년 1월 4일
편집: Sean de Wolski 2013년 1월 4일
Just add a space to the end of the string:
uicontrol('Style','Text','HorizontalAlignment','right',...
'String','3.1425926535897932384626433 ','Units',...
'Pixels','Position',[20 20 200 20])
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 3월 8일
Ralph comments:
This is not a fix. It's just a workaround. And 7 years later in 2020 it is still an issue.
Walter Roberson
Walter Roberson 2020년 3월 8일
Ralph, this will not be fixed. GUIDE is deprecated and will go away within a small number of releases. I do not know exactly when it will go away, but I would not expect it to still be present in R2022a.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by