uitab copy one table from another?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i use uitab control in appdesigner , have creat one tab with many uicontrols in it, and next step i want to copy it to anther tab in same parents uitable,
i have use the following code ,but it ruturns nothing except an empty tab with title.please help me out, thanks a lot.
% creat new tab use uitable;“app.conductor_groundwire_tab” is parents tab in appdesigner.
table2 = uitab(app.conductor_groundwire_tab,'Title','后侧导地线参数表');
% copy one tab already buited in tab app.front_cg table.
table2=app.front_cg;
0 commentaires
Réponses (2)
Kojiro Saito
le 20 Mar 2019
I think creating an uitab, creating an uitable into uitab, then setting data into the uitable will work.
% creat a new tab use uitab;“app.conductor_groundwire_tab” is parents tab in appdesigner.
tab2 = uitab(app.conductor_groundwire_tab,'Title','后侧导地线参数表');
% create a new uitable
newUiTable = uitable(tab2);
% copy data from app.front_cg to new uitable
newUiTable.Data = app.front_cg;
0 commentaires
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!