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

64 visualizaciones (últimos 30 días)
JeJ
JeJ el 18 de Mzo. de 2015
Respondida: umichguy84 el 30 de En. de 2018
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.

Respuestas (1)

umichguy84
umichguy84 el 30 de En. de 2018
You can use the newline char '\n' with fprint or disp.
fprintf([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])
OR
disp([ 'Line1Text ' '\n'...
'Line2Text ' '\n'...
'Line3Text ' ])

Categorías

Más información sobre Interactive Model Editing en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by