フィルターのクリア

Hide multiple 'edit text'

1 回表示 (過去 30 日間)
SmaShBr0ther
SmaShBr0ther 2018 年 1 月 31 日
編集済み: Gayatri Menon 2018 年 3 月 30 日
Hi everybody. I have several edit texts where I'm trying to read the SoC and SoH values of cells in a GUI. I now want to hide all edit texts that will not be used (determined by a number from a dropdown menu). The edit text tags use a continuous numeration (SoH_C1_1, SoH_C2_1, SoH_C3_1 and so on) I now tried using a for loop to hide all the unwanted edit texts
for i = 2:x
name = strcat('SoH_C',num2str(i),'_1')
set(handles.name,'Visible','Off')
end
Is it somehow possible to use the variable 'name' as shown above?
Thanks in advance

採用された回答

Gayatri Menon
Gayatri Menon 2018 年 2 月 12 日
編集済み: Gayatri Menon 2018 年 3 月 30 日
Hi,
set(H,Name,Value) specifies a value for the property Name on the object identified by H.
The string(name) you are creating is of type char. You cannot use this value directly in set command instead, you can use this value to find the objects with the same Tag name and set their visibility to 'Off'
for i = 2:x
name = strcat('SoH_C',num2str(i),'_1')
a=findobj('Tag',name)
set(a, 'Visible','Off')
end
Hope the above helps
Thanks
  1 件のコメント
SmaShBr0ther
SmaShBr0ther 2018 年 3 月 1 日
Thanks, this worked well also for other things where i wanted to edit multiple handles. one comment: the command is findobj not find_obj

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by