Why does get(handles.editbox, 'String') return a char when the box is empty but a cell for all other cases?
2 ビュー (過去 30 日間)
古いコメントを表示
Is this expected behavior or is it a bug?
I finally tracked down a frustrating bug to this behavior, as I was tacking the contents of several edit boxes onto the end of a cell array.
I worked around by writing my own getEditboxContents function that always returns a cell, but that seems like it shouldn't be necessary.
What is the best practice for handling this case?
Cheers
0 件のコメント
採用された回答
Geoff Hayes
2014 年 10 月 10 日
Nicholas - I suspect that this is expected behaviour. If the edit box control allows for multiple lines (because the Max property is greater than the Min property), then the return of
get(handles.edit1,'String')
would be an mx1 cell array where m is the number of lines in the edit box. That's why, whenever I call the above on edit boxes which are single lines, I always wrap the get in a char
char(get(handles.edit1,'String'))
so that the result is in fact a string (or char array).
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Entering Commands についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!