How can i clear a row or all rows of UItable in AppDesigner?

조회 수: 24 (최근 30일)
Aiden Su
Aiden Su 2022년 5월 5일
댓글: Geoff Hayes 2022년 5월 6일
clear one row:
clear all rows:
what i wanted is shown in these pictures, how can i do this? I'd appreciate some help.
  댓글 수: 3
Aiden Su
Aiden Su 2022년 5월 6일
Sorry, I don't make myself clear. Yes I would like to use a push button to achieve this and i prefer to clear all rows.

댓글을 달려면 로그인하십시오.

답변 (1개)

Mitch Lautigar
Mitch Lautigar 2022년 5월 5일
For UItables, you need to set "editable" to on so you can change the values of the table programatically. After that, it's just a matter of stepping through the UI structure to get to the table parameters. I have two things to point you too in the hopes it helps.
  1. https://www.mathworks.com/matlabcentral/answers/40789-is-there-a-way-to-delete-a-whole-row-in-a-uitable-by-clicking-a-delete-row-button --- This question was asked previously, and helped me to do this in a personal GUI of mine.
  2. https://www.mathworks.com/help/matlab/ref/matlab.ui.control.table-properties.html --- This has table properties. The property you are looking for I believe is "data"
  댓글 수: 1
Aiden Su
Aiden Su 2022년 5월 6일
편집: Aiden Su 2022년 5월 6일
properties (Access = private)
Indices_h = 0;
end
function height_clean_ButtonPushed(app, event)
ind = app.Indices_h;
if ind == 0
app.HeightTable.Data(end,:) = [];
end
end
Thank you for your help, I find a way that can clear the last row of UItable by default.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by