How to programmatically get a list of all app properties in AppDesigner

조회 수: 42 (최근 30일)
Hi,
I'm writing a large app in appDesigner, and I want to create a list / text area that would display all of the app property fields. I can't find a way to programatically pull their names, does anyone know a way of doing this?
P.S. I'm on 2022b.
Thanks!
VS

채택된 답변

Abolfazl Chaman Motlagh
Abolfazl Chaman Motlagh 2022년 9월 15일
you can get all public properties with :
P = properties(app);
for all private and public properties you can use meta class properties function:
mc = ?appname
use the application name for appname (the name you saved .mlapp file, or name that appears after classdef at first line).
after that call for property list:
P = mc.PropertyList;
it give you a property array with the size of number of properties. and for eachone their information. for example run :
P(1)
or
P(1).Name
( i think the first index always is UIFigure)
a simple example for listing the names:
for i=1:numel(P)
Name{i} = P(i).Name;
end
  댓글 수: 1
Vitek Stepien
Vitek Stepien 2022년 9월 16일
Thank you, the second method works great! I only neede the private properties, I was able to get the public ones on my own but not the private ones. I used the following to get and list in a ListBox only private, following your code suggestion:
mc = ?MyApp;
P = mc.PropertyList;
ii = 1;
for n = 1:numel(P)
if strcmp(P(n).GetAccess,'private')
Items{ii} = P(n).Name;
ii = ii+1;
end
end
app.ListofpropertiesListBox.Items = Items;

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by