Uitable Row Height

25 次查看(过去 30 天)
Eggo Ogge
Eggo Ogge 2011-3-9
I want to ask, how to change uitable rows height, because there is no option in the uitable properties. Thanks in advice.

采纳的回答

Oleg Komarov
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

更多回答(1 个)

Walter Roberson
Walter Roberson 2011-3-9
Please have a look at the information on Undocumented Matlab

类别

Help CenterFile 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!

Translated by