How to create an uicontrol with selectable but non-editable text.
10 ビュー (過去 30 日間)
古いコメントを表示
I want to allow user copy a text (or it's part) into clipboard in usual manner (selecting by mouse and pressing Ctrl-C). How to make it? A 'text' style uicontrol doesn't permit selection. Оn the other hand, an 'edit' style permits selection and copying to clipbord but also allows editing what is not desirable.
0 件のコメント
回答 (2 件)
bbb_bbb
2018 年 4 月 25 日
編集済み: bbb_bbb
2018 年 4 月 25 日
1 件のコメント
Ameer Hamza
2018 年 4 月 25 日
Worth mentioning that findjobj is not a MATLAB built-in function. It is available FEX::findjobj here.
Walter Roberson
2018 年 4 月 25 日
Hack the Java objects underlying the uicontrol.
But first experiment with setting the uicontrol enable property to 'disable'. The result is a uicontrol that can still scroll but not be edited. I do not recall whether it is selectable.
2 件のコメント
Dennis
2018 年 4 月 25 日
If it is okay to copy the entire text you could create a ButtonDownFcn that copies the string to clipboard.
function copytxt (hobj,~) mystring=get(hObj,'String'); clipboard('copy',mystring) end
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!