是否有命令以任何方式最大化或操纵Dymola中绘图窗口的大小和位置?
使用createPlot()创建绘图后,我想在屏幕允许的区域内最大化该窗口。
没有任何资源,无论是在线还是印刷,都表明了如何做到这一点,没有人说它无法完成。我希望有人能指出我的来源,告诉我如何,或告诉我不要再尝试了。
以下是我的测试脚本的全部内容:
simulateModel("TIL_AddOnTraining.Example07a", stopTime=300, method="dassl", tolerance=1e-005, resultFile="Example07a");
createPlot(
id=0,
position={0, 0, 857, 705},
x="valve.summary.dp",
y={"valve.summary.m_flow_A"},
grid=true,
colors={{255,0,0}},
thicknesses={0.7},
autoscale = true
);
[Here is where I would like the command to maximize window called "Plot [0*]".]
提前致谢。
答案 0 :(得分:0)