フィルターのクリア

Deleting pushbutton from mask

1 回表示 (過去 30 日間)
Lucas Maiß
Lucas Maiß 2017 年 11 月 6 日
コメント済み: Lucas Maiß 2017 年 11 月 17 日
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 件のコメント
Lucas Maiß
Lucas Maiß 2017 年 11 月 17 日
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.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeAuthor Block Masks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by