Effacer les filtres
Effacer les filtres

Deleting pushbutton from mask

2 vues (au cours des 30 derniers jours)
Lucas Maiß
Lucas Maiß le 6 Nov 2017
Commenté : Lucas Maiß le 17 Nov 2017
Hello, I would like to delete a pushbutton from a mask by a script. The pushbutton is inside a tab. I tried it like this:
Variants.maskHandle = Simulink.Mask.get('GHiL_GENERIC/pinky/HiL_ECU/IO/NIP_Editor')
p = Variants.maskHandle.removeDialogControl ('Control32')
test = Variants.maskHandle.getDialogControl('Control32')
p = Variants.maskHandle.removeDialogControl (test)
Both ways the following error occured:
No method 'removeDialogControl' with matching signature found for class 'Simulink.Mask'.
Could you give me a hint how to make it work?
Greetings Lucas
  1 commentaire
Lucas Maiß
Lucas Maiß le 17 Nov 2017
The answer from the MATLAB support:
>> maskObj = Simulink.Mask.get('Example/subsystem'); >> tab = maskObj.getDialogControl('Container4'); >> tab.removeDialogControl('Control2') Where the "Container4" and "Control2" are the Names for the Tab and the Button.
The reason that you receive this error is because that in MATLAB R2014b the function "removeDialogControl" does not return any output. Therefore, assigning it to a variable "p" will cause the error.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Author Block Masks dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by