Setting Access Properties to Public without AppDesigner
1 view (last 30 days)
Show older comments
So I'm working on a project that requires programmatic GUI development, and I'm trying to set a variable to public so it can be used and shared between multiple callback functions.
I'm essentially trying to make the:
properties (Access = public)
x = 1234
end
happen but obviously it does not work. Is there a way to set a variable to be shared between callback functions programmatically?
FYI; I'm using a uifigure based GUI so I can't use anything that only works on a figure based GUI.
0 Comments
Accepted Answer
Rik
on 23 Apr 2021
As you can see here, class properties are public by default, so you don't need to add any text. The rest of that thread might be interesting for you as well.
More Answers (0)
See Also
Categories
Find more on Develop uifigure-Based Apps 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!