How do I make a widget initialize as "invisible" in App Designer?

I have an app where I've altered the functionality such that certain widgets are no longer used. Unfortunately, I don't want to delete them outright since I've been using their associated structures to hold various bits of data that I frequently query with the remaining widgets. I would like to make them completely invisible in the figure window though. Currently, I've moved them into the background or off the actual figure, but sometimes their imprints or "echoes" still appear. I saw that there is a 'visible' property for these widgets (ie: app.widgetname.Visible='off'), but I only know how to set this property after I've actually triggered a callback within my application. Is there a way to get the application to initially set these features as invisible when the application is started before any human interaction?

 Accepted Answer

When you click on "Run" for the .mlapp file in App Designer, this will trigger a startup function "startupFcn"(if you set up startup function in you app) to initialize the app. In your case, make sure you set those widgets to be invisible within the startup function. (Most of time the widgets were set visible by default)

More Answers (1)

Set their visibility property to "off".
In Design View, select the component, and in the component browser (on the right) under Inspector, expand Interactivity and uncheck Visible.

1 Comment

Oh wow....I thought I'd already looked through all those options in the properties tab. I don't know how I missed that! Thanks for the reply!
Edit: This worked just fine for a few of the widgets, but there were others that lacked this option. I ultimately set up a 'startupFcn' to hide those components.

Sign in to comment.

Categories

Products

Release

R2018a

Community Treasure Hunt

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

Start Hunting!