Insert a line break in Mask-Editor / Parameters / Prompt

64 ビュー (過去 30 日間)
JeJ
JeJ 2015 年 3 月 18 日
回答済み: umichguy84 2018 年 1 月 30 日
Is it possible to insert a line break into the "prompt" field of the parameters pane of the mask editor?
I would like to use multiple lines of text preceding the variable field.

回答 (1 件)

umichguy84
umichguy84 2018 年 1 月 30 日
You can use the newline char '\n' with fprint or disp.
fprintf([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])
OR
disp([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])

カテゴリ

Help Center および File ExchangeInteractive Model Editing についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by