added a UITable#2
Conversation
| baseTag = tag_parts{1}; | ||
|
|
||
| % Check if the component object exists in the app's model. | ||
| if isfield(app.ComponentObjects, baseTag) |
Check warning
Code scanning / Code Analyzer
'ComponentObjects' is referenced but is not a property, method, or event name defined in this class. Warning
| % Check if the component object exists in the app's model. | ||
| if isfield(app.ComponentObjects, baseTag) | ||
| % Get the component object (the UITable object). | ||
| componentObj = app.ComponentObjects.(baseTag); |
Check warning
Code scanning / Code Analyzer
'ComponentObjects' is referenced but is not a property, method, or event name defined in this class. Warning
| end | ||
|
|
||
| % Write the modified component object back to the app's model. | ||
| app.ComponentObjects.(baseTag) = componentObj; |
Check warning
Code scanning / Code Analyzer
'ComponentObjects' is not a property, but is the target of an assignment. Warning
| app.ComponentObjects.(baseTag) = componentObj; | ||
|
|
||
| % Update the enable/disable state of other components if necessary. | ||
| app.EnableDisable(); |
Check warning
Code scanning / Code Analyzer
'EnableDisable' is referenced but is not a property, method, or event name defined in this class. Warning
No description provided.