Change or Add to greyed-out areas in App Designer
34 次查看(过去 30 天)
显示 更早的评论
In the Design View, when I add a UI control, such as a Tab Group, it auto adds code such as:
% Create TabGroup
app.TabGroup = uitabgroup(app.UIFigure);
app.TabGroup.Position = [13, 296, 540, 96];
% Create FirstTab
app.FirstTab = uitab(app.TabGroup);
app.FirstTab.Title = 'First';
I want to add another line to this greyed-out code, such as this:
app.FirstTab.UserData.ID = 5;
When I click on the Tab in design mode, it doesn't show all of the properties, such as "UserData". How do I add UserData to a Tab, when the code is greyed-out and won't let me change it?
0 个评论
采纳的回答
Mario Malic
2020-9-6
You do that by adding callback startupFcn which executes after component creation.
If you are on Editor tab, click on Callback and you'll see it on when you select UIFigure component.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!