Clear Filters
Clear Filters

how to get reference in app designer

15 views (last 30 days)
Luca Re
Luca Re on 5 Dec 2023
Edited: Matt J on 27 Apr 2024
i'm in Predator_Equity.Mlapp and i create Lista_strategieAggreg using:
Lista_stratzegieAggreg(app);
it's possible to receive referenze of this app?
example: xx=Lista_stratzegieAggreg(app);
but it doesn't run
Why do I need it? because when I create Lista_strategie Aggreg I want to update a value in the panel (where there is the red arrow in the photo I have to update the text box) and to do so I need the reference
  3 Comments
Ehab
Ehab on 27 Apr 2024
Edited: Matt J on 27 Apr 2024
app.t = readtable("book9.xlsx","Sheet",1);
app.UITable.Data = app.t;
j = app.idEditField_2.Value;
data.id{1} = 1111;
data.id{2} = 222;
data.id{3} = 333;
i= j;
for i=(1:3);
app.t.name(1);
app.t.id(2);
app.t.salary(3) ;
app.t.age(4);
end
app.nameEditField_2.Value{j} = 'name';
app.salaryEditField_2.Value{j} = 'salary';
app.ageEditField_2.Value{j} = 'age';

Sign in to comment.

Accepted Answer

Matt J
Matt J on 5 Dec 2023
Edited: Matt J on 5 Dec 2023
It is possible, and what you've shown should have worked, unless your Matlab version is really old.
The Code view should show the calling and output syntax of the app constructor function, e.g.,

More Answers (1)

Gloria Beard
Gloria Beard on 5 Dec 2023
Edited: Voss on 5 Dec 2023
Selecting the Component in App Designer: Open your App Designer project. In the App Designer, select the component or control you want to get a reference to. This could be a button, text box, plot, etc.
Naming the Component: In the "Properties" pane on the right side of the App Designer, there is an option called "Name." Assign a unique name to the component. This name will be used to reference the component in your code.
Accessing the Component in Code: In the App Designer, click on the "Code View" button or select the "View Code" option from the "View" menu. This will take you to the MATLAB code editor for your app.
Using the Reference in Code: Once you are in the code editor, you can use the reference to your component by its assigned name. For example, if younamed a button 'myButton', you can reference it in your code like this:
% Accessing the button's properties
myButton.BackgroundColor = [1, 0, 0]; % Set background color to red
% Adding a callback function to the button
myButton.ButtonPushedFcn = @(src, event) myButtonCallback(src, event); <spam link removed>

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!