MATLAB: String of the button edit

edit buttonguide

hi, I have a question about button edit. Generelly in the string of edit, we can only input a line of data. Can we input the data in different line?

Best Answer

'edit' – Editable text fields enable you to enter or modify text values. Use editable text when you want free text as input. To enable multiple lines of text, set Max-Min>1. Multiline edit boxes provide a vertical scroll bar for scrolling. The arrow keys also provide a way to scroll. Obtain the current text by getting the String property. The String property does not update as you type in an edit box. You must click away from the edit box to update its String property and activate its callback.
Related Question