Uitable Row Height
24 ビュー (過去 30 日間)
古いコメントを表示
I want to ask, how to change uitable rows height, because there is no option in the uitable properties. Thanks in advice.
0 件のコメント
採用された回答
Oleg Komarov
2011 年 3 月 9 日
The only way to affect the row height, as Yair explains here (msg 5/6), is to reprogram the resizing callback.
On the other side, adjusting the fontsize automatically adjusts the row heigth.
f = figure('Position',[200 200 400 150]);
dat = rand(3);
t = uitable('Parent',f,'Data',dat,'Position',[20 20 360 100],'FontS',13);
Oleg
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!