controlling the size of mask dialog box in SIMULINK

15 ビュー (過去 30 日間)
Vijay
Vijay 2012 年 7 月 10 日
is there any option to control the size of the mask dialog box of a masked subsystem?
When there are many paramters to be displayed, the mask dialog box will have vertical slidebars which can be manually controlled. This happens eventhough there is enough place in the monitor to display everything. I want to define this size of the mask dialog box programmatically so that every parameter is displayed in the dialog box without scrollbars. Please let me know if it possible.
  2 件のコメント
Kaustubha Govind
Kaustubha Govind 2013 年 4 月 4 日
I don't think this is currently possible. Please feel free to submit an enhancement request via MathWorks Tech Support however, so that the development team is aware of this need.
Dani Tormo
Dani Tormo 2013 年 4 月 5 日
And how could be that in the simscape library its mask shape changes as you are changing the settings?

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

採用された回答

Timo Dörsam
Timo Dörsam 2013 年 4 月 5 日
Hi there,
I found a way to manipulate the size via undocumented DAStudio.
... but only if the blockmask is already open:
% (1) get DAStudio handles of open dialogs,
% my case 2 open dialogs: "DAStudio.Dialog: 2-by-1"
h2AllOpenDlgs = DAStudio.ToolRoot.getOpenDialogs;
% (2) you can strfind/strcmp-identify it via title or block's path+name.
% ... but let's take the first dialog
strDlgTitle = h2AllOpenDlgs(1).getTitle;
strPath2Parent = h2AllOpenDlgs(1).getSource.getBlock.Path;
strBlockName = h2AllOpenDlgs(1).getSource.getBlock.Name;
% (3) get old position of dlg:
iPos = h2AllOpenDlgs(1).position;
% (4) manipulate dialog size
h2AllOpenDlgs(1).position = [iPos(1) iPos(2) iPos(3)*2 iPos(4)*2];
% there is also an option to get the ".dialogTag": 'SubSystem.WINDOW_CONTROLLER'

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulink についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by