GUIDE using CreateFcn to set TooltipString?

조회 수: 6 (최근 30일)
Ingo Rück
Ingo Rück 2017년 10월 11일
댓글: Jan 2017년 10월 11일
Hello everyone,
simple question, is it possible to change the TooltipString value of a static text in its CreateFcn? I want to display a formula, normally I would do it with following code:
set(handles.statictext,'TooltipString','somewhat longer formula here','Interpreter','latex')
Problem here is that the handles.statictext does not yet exist in its CreateFcn. If I only do:
set('TooltipString','somewhat longer formula here','Interpreter','latex')
it does not work either. Maybe there is a way to set the TooltipString interpreter to latex in the GUI Inspector in GUIDE?
Thanks for your help!
  댓글 수: 4
Adam
Adam 2017년 10월 11일
Yeah, I don't think you can do anything fancy with tooltips beyond just setting a string. Even edit boxes and text boxes themselves don't support advanced formatting without resorting to HTML or underlying java objects, as far as I am aware.
Ingo Rück
Ingo Rück 2017년 10월 11일
Not even static textboxes? Damn thats a bummer..

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

채택된 답변

ES
ES 2017년 10월 11일
You can do it in OpenFcn! Is there any specific reason, why you do it in CreateFcn?
  댓글 수: 3
Ingo Rück
Ingo Rück 2017년 10월 11일
When I try to change it in the OpenFcn I get the same error as above: There is no Interpreter property on the UIControl class.
Does this basically mean that it is impossible to use Latex to put a formula into the Tooltip string?
Jan
Jan 2017년 10월 11일
@Ingo: The error message is clear: There is no interpreter in uicontrol objects. Then you cannot display LaTeX directly in a tooltip string.

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

추가 답변 (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