Main Content

save

Save architecture model or data dictionary

Description

save(model) saves the architecture model to a file specified in its Name property.

save(dictionary) saves the data dictionary.

example

Examples

collapse all

arch = systemcomposer.createModel("newModel");
save(arch);
save(arch.InterfaceDictionary);
dictionary = systemcomposer.createDictionary("modelInterfaces.sldd");
dictionary.save;

Input Arguments

collapse all

Architecture model, specified as a systemcomposer.arch.Model object.

Data dictionary attached to the architecture model, specified as a systemcomposer.interface.Dictionary object.

More About

collapse all

Version History

Introduced in R2019a