How to declare variable in App Designer

38 visualizaciones (últimos 30 días)
Jakub Wojturski
Jakub Wojturski el 7 de En. de 2022
Comentada: Jakub Wojturski el 7 de En. de 2022
Good morning.
1. I declare in App Designer the text variable A
properties (Access = private)
A = 'text'
end
2. When I push Button I call the variable A and display its value in Command Window
% Button pushed function: Button
function ButtonPushed(app, event)
text = app.A
end
In this way everything is okay.
But I can not deal with the problem, how to do that the value of variable A is not declared as a written text but it is taken as a value of EditField (Text)
% Callback function
function EditFieldValueChanged(app, event)
value = app.EditField.Value;
end
Thank you for your help.

Respuestas (1)

Mohammad Sami
Mohammad Sami el 7 de En. de 2022
Do you mean you want to set the value of A equal to the value of edit field ?
app.A = app.EditField.Value;
  1 comentario
Jakub Wojturski
Jakub Wojturski el 7 de En. de 2022
Yes. I want to assign the value of the edit field to the variable A.

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by