Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Stateflow API 的view方法来选择/突出显示 Stateflow 图中的元素,但我想在之后清除突出显示。我知道我可以获得 Stateflow 对象的句柄并调用它的view方法来突出显示它:
view
theObject = find(sfroot, 'Id', <id number>); theObject.view;
...但是由于view不接受任何参数并且在对象的句柄上被调用,所以我不确定在完成后如何将选择设置为“无”。之后清除高光的推荐方法是什么?
theObject.view;
用于使对象适合屏幕。要突出显示一个对象,我建议您使用以下方法:
theObject.highlight;
要禁用突出显示,请尝试:
sf('Highlight', <chartId>, []);
其中chartId是图表对象的数字 ID。
chartId