Borrar filtros
Borrar filtros

private properties for UI component in app designer

33 visualizaciones (últimos 30 días)
Aleksandr Petrusev
Aleksandr Petrusev el 6 de Jul. de 2023
Comentada: Aleksandr Petrusev el 7 de Jul. de 2023
Hello everyone,
I am wondering if it is possible to access the private properties of the UI component in the external function. In my example, I have an EV_lite component and inside of it I use a “DropDownValueChanged” callback which executes a function outside the component:
However, this function gives us an error, because it requires a private property “CategoryEVDropDown”:
I have dozens of such properties. Could you advise how to declare these private properties as public or access them directly outside of the component?
Or the only option is to put all the code inside of the component?
Thank you in advance!

Respuestas (1)

Sandeep Mishra
Sandeep Mishra el 6 de Jul. de 2023
Hello Aleksandr,
I understand that you are trying to create a private property of the UI component, but you cannot access that function outside the component.
In MATLAB App Designer, you can create public UI components in the following ways
  1. In Design view, Drag and Drop the UI component will make public UI component by default
  2. In Code view, You can create new Public Property by selecting Public Property from Property option.
  3. In Code view, You can change the "Access" modifier of properties from private to public like below
properties (Access = public)
CategoryEVDropDown
end
You can refer to the below documentation to learn more about MATLAB App Designer properties.
  6 comentarios
Sandeep Mishra
Sandeep Mishra el 7 de Jul. de 2023
Also from you function, It seems like you need the "DropDown" value instead of whole component
So it is recommended to pass "DropDown" value from the component to the function, instead of whole Component.
Aleksandr Petrusev
Aleksandr Petrusev el 7 de Jul. de 2023
Thank you. This approach works fine to get the value of the property. However, chaging DropDownPublicProperty doesn't impact initial DropDown. In the end, I found "dependent property" which allows both getting value of private property and change it:
https://www.mathworks.com/help/matlab/matlab_oop/access-methods-for-dependent-properties.html
I hope it will help others

Iniciar sesión para comentar.

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by