Repository.Model.AddModel
Jump to navigation
Jump to search
Member of: SynthesisAPI10Repository
Creates a new model and saves it in the current project. Returns a Boolean value; when true, indicates that the model was successfully created and saved in the project.
Syntax
object.Model.AddModel(m)
where object is a variable that represents a Repository object.
Parameters
Name | Description | |
---|---|---|
mborder="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse; text-align: left; cellborder" | ||
Name | Status | The cModel object to be added. |
Example
This example creates a new model in the first available project in a Synthesis repository.
VB.NET Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. 'Declare a new model. Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "MyNewModel", 1, 100) 'Add the model to project #1. The model will be available in the Synthesis repository upon refresh. MyRepository.Project.SetCurrentProject(1) MyRepository.Model.AddModel(newModel)