Main Content

dialog

Open properties dialog box

Description

example

dialog(object) opens the properties dialog box of an object.

Examples

collapse all

Open a Simulink® model called myModel. Suppose that the model contains a Stateflow® chart named My Chart.

open_system("myModel")

Find the chart named My Chart.

ch = find(sfroot,"-isa","Stateflow.Chart", ...
    Name="My Chart");

Open the properties dialog box for the chart.

dialog(ch);

Version History

Introduced before R2006a